View Pit Stop page for race #56 by foggyy — Ghost race
View profile for ⛧🦇🎃💀🎃🦇⛧ (foggyy)
| Official speed | 65.56 wpm (51.25 seconds elapsed during race) |
|---|---|
| Race Start | February 24, 2019 11:33:53pm UTC |
| Race Finish | February 24, 2019 11:34:44pm UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 94.0% |
| Points | 50.26 |
| 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.'; } } |