Polish (gtadragonball)

Race #9

View Pit Stop page for race #9 by gtadragonballGhost race

View profile for Polish (gtadragonball)

Official speed 42.26 wpm (85.47 seconds elapsed during race)
Race Start May 26, 2023 9:03:05pm UTC
Race Finish May 26, 2023 9:04:30pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 32.40
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.'; } }