View Pit Stop page for race #16 by atthetop — Ghost race
View profile for Shoemaker-Levy 9 (atthetop)
Official speed | 64.21 wpm (52.33 seconds elapsed during race) |
---|---|
Race Start | October 31, 2018 11:17:05pm UTC |
Race Finish | October 31, 2018 11:17:57pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (67.34 wpm) |
Accuracy | 94.0% |
Points | 49.23 |
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.'; } } |