(mitchellwu076)

Race #2

View Pit Stop page for race #2 by mitchellwu076Ghost race

View profile for (mitchellwu076)

Official speed 62.53 wpm (53.73 seconds elapsed during race)
Race Start December 1, 2020 4:06:22pm UTC
Race Finish December 1, 2020 4:07:16pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 47.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.'; } }