raging_wolf (raging_wolf)

Race #44

View Pit Stop page for race #44 by raging_wolfGhost race

View profile for raging_wolf (raging_wolf)

Official speed 33.83 wpm (99.32 seconds elapsed during race)
Race Start December 10, 2020 12:11:00pm UTC
Race Finish December 10, 2020 12:12:39pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 25.94
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.'; } }