ProRick2358Y (prysp)

Race #25

View Pit Stop page for race #25 by pryspGhost race

View profile for ProRick2358Y (prysp)

Official speed 47.73 wpm (75.68 seconds elapsed during race)
Race Start July 7, 2025 8:15:18pm UTC
Race Finish July 7, 2025 8:16:34pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 36.59
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.'; } }