Alex (evil_alex)

Race #404

View Pit Stop page for race #404 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 51.15 wpm (70.62 seconds elapsed during race)
Race Start March 20, 2025 3:40:58pm UTC
Race Finish March 20, 2025 3:42:09pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 39.22
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.'; } }