:) (jjz03)

Race #3

View Pit Stop page for race #3 by jjz03Ghost race

View profile for :) (jjz03)

Official speed 64.24 wpm (52.30 seconds elapsed during race)
Race Start October 12, 2018 12:19:50pm UTC
Race Finish October 12, 2018 12:20:42pm UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 49.25
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.'; } }