View Pit Stop page for race #63 by styrofoam — Ghost race
View profile for police (styrofoam)
| Official speed | 83.92 wpm (40.04 seconds elapsed during race) |
|---|---|
| Race Start | October 31, 2018 11:45:21pm UTC |
| Race Finish | October 31, 2018 11:46:01pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. atthetop (60.75 wpm) |
| Accuracy | 98.0% |
| Points | 64.34 |
| 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.'; } } |