Alex (evil_alex)

Race #383

View Pit Stop page for race #383 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 49.03 wpm (73.67 seconds elapsed during race)
Race Start March 15, 2025 11:16:49am UTC
Race Finish March 15, 2025 11:18:02am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 37.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.'; } }