Abhinandan (abhinandan_12)

Race #6

View Pit Stop page for race #6 by abhinandan_12Ghost race

View profile for Abhinandan (abhinandan_12)

Official speed 15.45 wpm (217.48 seconds elapsed during race)
Race Start December 6, 2020 1:10:02pm UTC
Race Finish December 6, 2020 1:13:40pm UTC
Outcome Win (1 of 3)
Accuracy 89.0%
Points 11.84
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.'; } }