Andrei (cheez3d)

Race #3

View Pit Stop page for race #3 by cheez3dGhost race

View profile for Andrei (cheez3d)

Official speed 64.70 wpm (55.83 seconds elapsed during race)
Race Start March 16, 2023 8:05:32pm UTC
Race Finish March 16, 2023 8:06:28pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 49.60
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.'; } }