Charlie (hobboloydn)

Race #85

View Pit Stop page for race #85 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 41.87 wpm (86.27 seconds elapsed during race)
Race Start April 18, 2025 11:39:24am UTC
Race Finish April 18, 2025 11:40:50am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 32.10
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.'; } }