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 |
|---|---|---|---|
| 62 | 2023-05-23 14:41:20 | 77.14 | 96.5% |
| 49 | 2023-05-23 02:12:19 | 73.26 | 98.7% |
| 36 | 2023-05-23 00:14:27 | 69.04 | 96.5% |
| 25 | 2023-05-22 19:58:35 | 66.56 | 96.4% |
| 12 | 2023-05-22 17:41:00 | 66.84 | 96.2% |
| 10 | 2023-05-22 17:38:16 | 70.94 | 98.4% |