Amit (amit__123)

Race #5

View Pit Stop page for race #5 by amit__123Ghost race

View profile for Amit (amit__123)

Official speed 31.45 wpm (114.85 seconds elapsed during race)
Race Start September 18, 2021 11:03:49am UTC
Race Finish September 18, 2021 11:05:44am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 24.11
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.'; } }