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.'; } }
| Game | Time | WPM | Accuracy |
|---|---|---|---|
| 104 | 2019-02-19 05:02:26 | 108.61 | 97% |
| 44 | 2019-02-16 05:40:26 | 86.15 | 95% |
| 22 | 2019-02-14 03:24:38 | 97.12 | 97% |
| 17 | 2019-02-14 03:17:14 | 91.89 | 97% |