zach (zachleachtx)

Race #8

View Pit Stop page for race #8 by zachleachtxGhost race

View profile for zach (zachleachtx)

Official speed 42.22 wpm (85.55 seconds elapsed during race)
Race Start September 24, 2020 8:24:14pm UTC
Race Finish September 24, 2020 8:25:40pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 32.37
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.'; } }