abhishek (a_anand_12)

Race #17

View Pit Stop page for race #17 by a_anand_12Ghost race

View profile for abhishek (a_anand_12)

Official speed 22.23 wpm (162.48 seconds elapsed during race)
Race Start November 30, 2022 4:45:46pm UTC
Race Finish November 30, 2022 4:48:28pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 17.05
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.'; } }