leonidas (awsomaw)

Race #21

View Pit Stop page for race #21 by awsomawGhost race

View profile for leonidas (awsomaw)

Official speed 113.29 wpm (29.66 seconds elapsed during race)
Race Start March 22, 2019 3:12:03am UTC
Race Finish March 22, 2019 3:12:33am UTC
Outcome No win (1 of 1)
Accuracy 97.0%
Points 86.85
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.'; } }