Alex (evil_alex)

Race #464

View Pit Stop page for race #464 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 47.95 wpm (75.33 seconds elapsed during race)
Race Start April 15, 2025 1:29:06pm UTC
Race Finish April 15, 2025 1:30:22pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 36.76
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.'; } }