Alex (alexklaus)

Race #146

View Pit Stop page for race #146 by alexklausGhost race

View profile for Alex (alexklaus)

Official speed 65.36 wpm (55.26 seconds elapsed during race)
Race Start August 30, 2021 11:54:41pm UTC
Race Finish August 30, 2021 11:55:37pm UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 50.11
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.'; } }