Charlie (hobboloydn)

Race #227

View Pit Stop page for race #227 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 63.87 wpm (56.55 seconds elapsed during race)
Race Start May 12, 2025 7:02:33pm UTC
Race Finish May 12, 2025 7:03:30pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 48.96
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.'; } }