Abhinandan (abhinandan_12)

Race #4

View Pit Stop page for race #4 by abhinandan_12Ghost race

View profile for Abhinandan (abhinandan_12)

Official speed 15.93 wpm (210.92 seconds elapsed during race)
Race Start December 6, 2020 12:37:44pm UTC
Race Finish December 6, 2020 12:41:15pm UTC
Outcome Win (1 of 3)
Accuracy 90.0%
Points 12.21
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.'; } }