TheProdigyHenry (henryv70)

Race #17

View Pit Stop page for race #17 by henryv70Ghost race

View profile for TheProdigyHenry (henryv70)

Official speed 69.58 wpm (51.91 seconds elapsed during race)
Race Start June 26, 2023 9:56:52pm UTC
Race Finish June 26, 2023 9:57:44pm UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 53.34
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.'; } }