View Pit Stop page for race #2 by _ice_tea_ — Ghost race
View profile for Yang-Yi (_ice_tea_)
| Official speed | 43.40 wpm (83.23 seconds elapsed during race) |
|---|---|
| Race Start | November 25, 2020 3:25:27am UTC |
| Race Finish | November 25, 2020 3:26:50am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 33.27 |
| 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.'; } } |