(mitchellwu076)

Race #4

View Pit Stop page for race #4 by mitchellwu076Ghost race

View profile for (mitchellwu076)

Official speed 61.45 wpm (54.68 seconds elapsed during race)
Race Start December 1, 2020 4:09:12pm UTC
Race Finish December 1, 2020 4:10:07pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 47.11
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.'; } }