TheProdigyHenry (henryv70)

Race #6

View Pit Stop page for race #6 by henryv70Ghost race

View profile for TheProdigyHenry (henryv70)

Official speed 44.59 wpm (75.35 seconds elapsed during race)
Race Start August 2, 2019 9:18:14pm UTC
Race Finish August 2, 2019 9:19:29pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 34.18
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.'; } }