da (causenetsofv)

Race #13

View Pit Stop page for race #13 by causenetsofvGhost race

View profile for da (causenetsofv)

Official speed 73.84 wpm (45.50 seconds elapsed during race)
Race Start November 25, 2020 8:30:47pm UTC
Race Finish November 25, 2020 8:31:32pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 56.61
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.'; } }