E (the_fast_one)

Race #37

View Pit Stop page for race #37 by the_fast_oneGhost race

View profile for E (the_fast_one)

Official speed 35.53 wpm (101.66 seconds elapsed during race)
Race Start June 25, 2023 5:55:02pm UTC
Race Finish June 25, 2023 5:56:44pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 27.24
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.'; } }