🤺 (turboflames)

Race #199

View Pit Stop page for race #199 by turboflamesGhost race

View profile for 🤺 (turboflames)

Official speed 79.44 wpm (45.47 seconds elapsed during race)
Race Start July 8, 2021 1:38:41am UTC
Race Finish July 8, 2021 1:39:27am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 60.90
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.'; } }