StevenElias (stevenelias)

Race #29

View Pit Stop page for race #29 by steveneliasGhost race

View profile for StevenElias (stevenelias)

Official speed 26.89 wpm (134.33 seconds elapsed during race)
Race Start February 12, 2025 10:25:41pm UTC
Race Finish February 12, 2025 10:27:55pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 20.62
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.'; } }