Daniel (youmth)

Race #2

View Pit Stop page for race #2 by youmthGhost race

View profile for Daniel (youmth)

Official speed 49.80 wpm (72.53 seconds elapsed during race)
Race Start July 5, 2023 10:40:30am UTC
Race Finish July 5, 2023 10:41:43am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 38.18
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.'; } }