View Pit Stop page for race #46 by foggyy — Ghost race
View profile for ⛧🦇🎃💀🎃🦇⛧ (foggyy)
| Official speed | 56.17 wpm (59.82 seconds elapsed during race) |
|---|---|
| Race Start | February 3, 2019 10:39:58pm UTC |
| Race Finish | February 3, 2019 10:40:58pm UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 94.0% |
| Points | 43.06 |
| 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.'; } } |