daniel3131 (daniel3131)

Race #21

View Pit Stop page for race #21 by daniel3131Ghost race

View profile for daniel3131 (daniel3131)

Official speed 62.74 wpm (53.55 seconds elapsed during race)
Race Start October 16, 2019 1:54:46pm UTC
Race Finish October 16, 2019 1:55:40pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 48.10
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.'; } }