da (causenetsofv)

Race #10

View Pit Stop page for race #10 by causenetsofvGhost race

View profile for da (causenetsofv)

Official speed 58.99 wpm (56.96 seconds elapsed during race)
Race Start November 23, 2020 6:32:48pm UTC
Race Finish November 23, 2020 6:33:45pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 45.23
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.'; } }