klenki (klenks)

Race #3

View Pit Stop page for race #3 by klenksGhost race

View profile for klenki (klenks)

Official speed 64.09 wpm (56.36 seconds elapsed during race)
Race Start March 2, 2021 4:37:41pm UTC
Race Finish March 2, 2021 4:38:37pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 49.14
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.'; } }