Shoemaker-Levy 9 (atthetop)

Race #35

View Pit Stop page for race #35 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 60.75 wpm (55.31 seconds elapsed during race)
Race Start October 31, 2018 11:45:21pm UTC
Race Finish October 31, 2018 11:46:16pm UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (83.92 wpm)
Accuracy 92.0%
Points 46.58
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.'; } }