spondunoob (spondulix)

Race #273

View Pit Stop page for race #273 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 93.63 wpm (35.89 seconds elapsed during race)
Race Start July 27, 2019 2:57:36am UTC
Race Finish July 27, 2019 2:58:12am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 71.78
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.'; } }