A47 (aaoat)

Race #1

View Pit Stop page for race #1 by aaoatGhost race

View profile for A47 (aaoat)

Official speed 24.05 wpm (150.19 seconds elapsed during race)
Race Start May 25, 2023 5:56:51pm UTC
Race Finish May 25, 2023 5:59:22pm UTC
Outcome No win (1 of 1)
Accuracy 93.0%
Points 18.44
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.'; } }