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 |
|---|---|---|---|
| 25 | 2023-08-18 13:43:14 | 36.52 | 95.4% |
| 14 | 2023-08-16 10:31:30 | 35.11 | 95.2% |