John Doe (typist1029384756)

Race #2

View Pit Stop page for race #2 by typist1029384756Ghost race

View profile for John Doe (typist1029384756)

Official speed 36.34 wpm (99.39 seconds elapsed during race)
Race Start March 24, 2023 5:33:34pm UTC
Race Finish March 24, 2023 5:35:14pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 27.86
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.'; } }