(altrocality)

Race #19

View Pit Stop page for race #19 by altrocalityGhost race

View profile for (altrocality)

Official speed 78.98 wpm (45.73 seconds elapsed during race)
Race Start June 4, 2023 1:20:25am UTC
Race Finish June 4, 2023 1:21:10am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 60.55
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.'; } }