spondunoob (spondulix)

Race #444

View Pit Stop page for race #444 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 97.34 wpm (34.52 seconds elapsed during race)
Race Start October 12, 2019 6:22:58pm UTC
Race Finish October 12, 2019 6:23:33pm UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 74.63
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.'; } }