jOn (jonsport)

Race #47

View Pit Stop page for race #47 by jonsportGhost race

View profile for jOn (jonsport)

Official speed 76.99 wpm (46.92 seconds elapsed during race)
Race Start July 18, 2025 7:51:11pm UTC
Race Finish July 18, 2025 7:51:58pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 59.03
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.'; } }