Niklas (neoon)

Race #3

View Pit Stop page for race #3 by neoonGhost race

View profile for Niklas (neoon)

Official speed 52.80 wpm (68.41 seconds elapsed during race)
Race Start June 4, 2025 10:08:09pm UTC
Race Finish June 4, 2025 10:09:17pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 40.48
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.'; } }