AAKASH (aakashkjee)

Race #1

View Pit Stop page for race #1 by aakashkjeeGhost race

View profile for AAKASH (aakashkjee)

Official speed 25.89 wpm (139.51 seconds elapsed during race)
Race Start June 7, 2023 6:54:28am UTC
Race Finish June 7, 2023 6:56:47am UTC
Outcome No win (2 of 2)
Accuracy 94.0%
Points 19.85
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.'; } }