spondunoob (spondulix)

Race #45

View Pit Stop page for race #45 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 83.87 wpm (40.06 seconds elapsed during race)
Race Start July 20, 2019 8:45:05pm UTC
Race Finish July 20, 2019 8:45:45pm UTC
Outcome No win (3 of 4)
Opponents 1. mako640 (123.89 wpm)
2. keegant (95.51 wpm)
4. storm (63.41 wpm)
Accuracy 98.0%
Points 64.30
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.'; } }