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 |
|---|---|---|---|
| 16 | 2023-06-18 07:45:36 | 49.44 | 92.8% |
| 15 | 2023-06-18 07:44:11 | 50.10 | 93.2% |
| 5 | 2023-06-17 18:06:26 | 49.35 | 92.7% |
| 2 | 2023-06-17 18:00:37 | 40.76 | 91.9% |