yethaplaya (yethaplaya)

Race #7

View Pit Stop page for race #7 by yethaplayaGhost race

View profile for yethaplaya (yethaplaya)

Official speed 58.07 wpm (62.20 seconds elapsed during race)
Race Start July 26, 2023 11:17:36am UTC
Race Finish July 26, 2023 11:18:38am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 44.52
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.'; } }