Marth (marth_of_altea)

Race #1

View Pit Stop page for race #1 by marth_of_alteaGhost race

View profile for Marth (marth_of_altea)

Official speed 29.82 wpm (121.13 seconds elapsed during race)
Race Start May 29, 2023 1:30:58am UTC
Race Finish May 29, 2023 1:32:59am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 22.86
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.'; } }