Alex (alexklaus)

Race #158

View Pit Stop page for race #158 by alexklausGhost race

View profile for Alex (alexklaus)

Official speed 64.08 wpm (56.37 seconds elapsed during race)
Race Start July 22, 2022 9:26:55am UTC
Race Finish July 22, 2022 9:27:51am UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 49.13
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.'; } }