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 |
|---|---|---|---|
| 3 | 2023-07-16 14:19:52 | 55.44 | 94.2% |
| 1 | 2023-07-16 14:16:42 | 59.98 | 96.3% |