ImBrayyy (imbrayyy01)

Race #5

View Pit Stop page for race #5 by imbrayyy01Ghost race

View profile for ImBrayyy (imbrayyy01)

Official speed 75.65 wpm (47.75 seconds elapsed during race)
Race Start September 15, 2023 1:28:38am UTC
Race Finish September 15, 2023 1:29:26am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 58.00
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.'; } }