Zoë (boramis)

Race #10

View Pit Stop page for race #10 by boramisGhost race

View profile for Zoë (boramis)

Official speed 74.19 wpm (48.69 seconds elapsed during race)
Race Start August 3, 2022 10:19:51pm UTC
Race Finish August 3, 2022 10:20:39pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 56.88
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.'; } }