Amit (amit__123)

Race #56

View Pit Stop page for race #56 by amit__123Ghost race

View profile for Amit (amit__123)

Official speed 37.73 wpm (95.73 seconds elapsed during race)
Race Start August 3, 2023 11:20:28am UTC
Race Finish August 3, 2023 11:22:04am UTC
Outcome Win (1 of 2)
Accuracy 92.0%
Points 28.92
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.'; } }