Shoemaker-Levy 9 (atthetop)

Race #48

View Pit Stop page for race #48 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 66.43 wpm (50.58 seconds elapsed during race)
Race Start November 1, 2018 2:50:54am UTC
Race Finish November 1, 2018 2:51:45am UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (73.53 wpm)
Accuracy 95.0%
Points 50.93
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.'; } }