ethan (asdf2552)

Race #29

View Pit Stop page for race #29 by asdf2552Ghost race

View profile for ethan (asdf2552)

Official speed 34.53 wpm (104.60 seconds elapsed during race)
Race Start June 28, 2025 11:43:23pm UTC
Race Finish June 28, 2025 11:45:08pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 26.48
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.'; } }