moshrom6 (moshrom6)

Race #10

View Pit Stop page for race #10 by moshrom6Ghost race

View profile for moshrom6 (moshrom6)

Official speed 47.01 wpm (76.83 seconds elapsed during race)
Race Start June 8, 2025 9:05:35pm UTC
Race Finish June 8, 2025 9:06:52pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 36.04
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.'; } }