daniel3131 (daniel3131)

Race #17

View Pit Stop page for race #17 by daniel3131Ghost race

View profile for daniel3131 (daniel3131)

Official speed 60.66 wpm (55.39 seconds elapsed during race)
Race Start October 15, 2019 9:37:36am UTC
Race Finish October 15, 2019 9:38:32am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 46.51
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.'; } }