(erokopes)

Race #26

View Pit Stop page for race #26 by erokopesGhost race

View profile for (erokopes)

Official speed 83.37 wpm (43.32 seconds elapsed during race)
Race Start May 25, 2022 1:09:06pm UTC
Race Finish May 25, 2022 1:09:49pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 63.92
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.'; } }