spondunoob (spondulix)

Race #363

View Pit Stop page for race #363 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 110.72 wpm (30.35 seconds elapsed during race)
Race Start August 16, 2019 1:44:48am UTC
Race Finish August 16, 2019 1:45:18am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 84.88
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.'; } }