hiiampandora (pandora39)

Race #3

View Pit Stop page for race #3 by pandora39Ghost race

View profile for hiiampandora (pandora39)

Official speed 54.02 wpm (62.20 seconds elapsed during race)
Race Start March 7, 2019 2:28:05am UTC
Race Finish March 7, 2019 2:29:07am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 41.42
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.'; } }