burger flipper (melikepi)

Race #4

View Pit Stop page for race #4 by melikepiGhost race

View profile for burger flipper (melikepi)

Official speed 65.53 wpm (51.27 seconds elapsed during race)
Race Start November 13, 2019 12:19:41am UTC
Race Finish November 13, 2019 12:20:33am UTC
Outcome No win (2 of 2)
Opponents 1. spondulix (104.46 wpm)
Accuracy 95.0%
Points 50.24
Text #10015 (Length: 301 characters)

function calculateArea(width, height) { try { var area = width * height; if (!isNaN(area)) { return area; } else { throw new Error('calculateArea() received invalid number'); } } catch(e) { console.log(e.name + ' ' + e.message); return 'We were unable to calculate the area.'; } }