Hello :) (chigginnuggie)

Race #3

View Pit Stop page for race #3 by chigginnuggieGhost race

View profile for Hello :) (chigginnuggie)

Official speed 52.97 wpm (68.19 seconds elapsed during race)
Race Start July 4, 2023 3:41:41am UTC
Race Finish July 4, 2023 3:42:49am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 40.61
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.'; } }