spondunoob (spondulix)

Race #17

View Pit Stop page for race #17 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 68.89 wpm (48.77 seconds elapsed during race)
Race Start February 24, 2019 8:48:05am UTC
Race Finish February 24, 2019 8:48:54am UTC
Outcome No win (2 of 2)
Opponents 1. permil (83.23 wpm)
Accuracy 97.0%
Points 52.82
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.'; } }