spondunoob (spondulix)

Race #215

View Pit Stop page for race #215 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 91.71 wpm (36.64 seconds elapsed during race)
Race Start July 24, 2019 11:57:10pm UTC
Race Finish July 24, 2019 11:57:46pm UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 70.31
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.'; } }