Satnam 😃 (satnam9781)

Race #2

View Pit Stop page for race #2 by satnam9781Ghost race

View profile for Satnam 😃 (satnam9781)

Official speed 41.44 wpm (81.08 seconds elapsed during race)
Race Start December 1, 2019 9:12:26am UTC
Race Finish December 1, 2019 9:13:47am UTC
Outcome Win (1 of 2)
Opponents 2. theamanjs (30.58 wpm)
Accuracy 94.0%
Points 31.77
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.'; } }