Mario (marfredd)

Race #4

View Pit Stop page for race #4 by marfreddGhost race

View profile for Mario (marfredd)

Official speed 56.03 wpm (64.47 seconds elapsed during race)
Race Start July 13, 2023 4:53:25am UTC
Race Finish July 13, 2023 4:54:30am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 42.96
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.'; } }