spondunoob (spondulix)

Race #39

View Pit Stop page for race #39 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 79.74 wpm (42.14 seconds elapsed during race)
Race Start July 20, 2019 8:35:36pm UTC
Race Finish July 20, 2019 8:36:19pm UTC
Outcome No win (3 of 4)
Opponents 1. mako640 (121.95 wpm)
2. keegant (79.80 wpm)
4. storm (62.55 wpm)
Accuracy 97.0%
Points 61.14
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.'; } }