Shoemaker-Levy 9 (atthetop)

Race #39

View Pit Stop page for race #39 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 72.08 wpm (46.61 seconds elapsed during race)
Race Start October 31, 2018 11:50:41pm UTC
Race Finish October 31, 2018 11:51:28pm UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (77.75 wpm)
Accuracy 96.0%
Points 55.26
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.'; } }