. (ahhhhhhhhhhhhhhhhhh)

Race #5

View Pit Stop page for race #5 by ahhhhhhhhhhhhhhhhhhGhost race

View profile for . (ahhhhhhhhhhhhhhhhhh)

Official speed 37.02 wpm (97.57 seconds elapsed during race)
Race Start May 30, 2023 1:50:21pm UTC
Race Finish May 30, 2023 1:51:59pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 28.38
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.'; } }