t11h (t111h)

Race #5

View Pit Stop page for race #5 by t111hGhost race

View profile for t11h (t111h)

Official speed 27.83 wpm (129.79 seconds elapsed during race)
Race Start March 22, 2022 11:47:44pm UTC
Race Finish March 22, 2022 11:49:54pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 21.33
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.'; } }