anastasis (firegun233)

Race #15

View Pit Stop page for race #15 by firegun233Ghost race

View profile for anastasis (firegun233)

Official speed 26.01 wpm (138.87 seconds elapsed during race)
Race Start June 15, 2023 9:52:30am UTC
Race Finish June 15, 2023 9:54:49am UTC
Outcome Win (1 of 3)
Accuracy 89.0%
Points 19.94
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.'; } }