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 |
|---|---|---|---|
| 36 | 2023-08-25 17:39:33 | 74.28 | 95.3% |
| 32 | 2022-06-03 13:29:56 | 86.27 | 98% |
| 26 | 2022-05-25 13:09:49 | 83.37 | 98% |