Shawn (dshawn)

Race #11

View Pit Stop page for race #11 by dshawnGhost race

View profile for Shawn (dshawn)

Official speed 46.90 wpm (71.64 seconds elapsed during race)
Race Start January 18, 2019 8:34:00pm UTC
Race Finish January 18, 2019 8:35:12pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 35.96
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.'; } }