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 |
|---|---|---|---|
| 12 | 2023-12-15 07:31:25 | 65.03 | 96.2% |
| 10 | 2023-06-21 03:13:34 | 77.58 | 97.4% |