hiiampandora (pandora39)

Race #4

View Pit Stop page for race #4 by pandora39Ghost race

View profile for hiiampandora (pandora39)

Official speed 56.99 wpm (58.96 seconds elapsed during race)
Race Start March 7, 2019 2:29:39am UTC
Race Finish March 7, 2019 2:30:38am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 43.69
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.'; } }