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 |
|---|---|---|---|
| 10 | 2023-11-24 16:54:21 | 73.66 | 96.1% |
| 6 | 2023-11-24 16:49:28 | 66.05 | 97% |
| 5 | 2023-11-24 08:55:49 | 77.18 | 97.1% |