Patrick (patrick10)

Race #1

View Pit Stop page for race #1 by patrick10Ghost race

View profile for Patrick (patrick10)

Official speed 23.07 wpm (145.64 seconds elapsed during race)
Race Start November 30, 2020 8:37:24pm UTC
Race Finish November 30, 2020 8:39:50pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 17.68
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.'; } }