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 |
|---|---|---|---|
| 111 | 2019-07-29 21:37:08 | 78.23 | 96% |
| 77 | 2019-05-26 08:04:07 | 68.52 | 97% |
| 76 | 2019-05-26 07:59:13 | 60.35 | 93% |
| 56 | 2019-02-24 23:34:44 | 65.56 | 94% |
| 46 | 2019-02-03 22:40:58 | 56.17 | 94% |
| 24 | 2019-01-28 05:48:03 | 63.02 | 94% |
| 2 | 2018-11-21 23:12:22 | 51.16 | 92% |