Alex (evil_alex)

Race #408

View Pit Stop page for race #408 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 50.92 wpm (70.93 seconds elapsed during race)
Race Start March 21, 2025 2:25:58pm UTC
Race Finish March 21, 2025 2:27:09pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 39.04
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.'; } }