Ethan (ondoyant)

Race #9

View Pit Stop page for race #9 by ondoyantGhost race

View profile for Ethan (ondoyant)

Official speed 39.41 wpm (91.65 seconds elapsed during race)
Race Start June 12, 2023 10:49:50am UTC
Race Finish June 12, 2023 10:51:21am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 30.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.'; } }