a (mb031)

Race #4

View Pit Stop page for race #4 by mb031Ghost race

View profile for a (mb031)

Official speed 40.31 wpm (83.35 seconds elapsed during race)
Race Start January 16, 2020 1:14:58am UTC
Race Finish January 16, 2020 1:16:21am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 30.90
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.'; } }