Shoemaker-Levy 9 (atthetop)

Race #24

View Pit Stop page for race #24 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 67.83 wpm (49.54 seconds elapsed during race)
Race Start October 31, 2018 11:28:37pm UTC
Race Finish October 31, 2018 11:29:27pm UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (68.77 wpm)
Accuracy 94.0%
Points 52.00
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.'; } }