Sparsh (sparsh123)

Race #6

View Pit Stop page for race #6 by sparsh123Ghost race

View profile for Sparsh (sparsh123)

Official speed 48.25 wpm (74.86 seconds elapsed during race)
Race Start May 27, 2021 6:01:37am UTC
Race Finish May 27, 2021 6:02:52am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 36.99
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.'; } }