abhishek (a_anand_12)

Race #1

View Pit Stop page for race #1 by a_anand_12Ghost race

View profile for abhishek (a_anand_12)

Official speed 23.04 wpm (156.77 seconds elapsed during race)
Race Start November 30, 2022 12:58:50pm UTC
Race Finish November 30, 2022 1:01:27pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 17.66
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.'; } }