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 |
|---|---|---|---|
| 38 | 2024-05-28 18:45:14 | 41.47 | 97.7% |
| 29 | 2024-05-15 18:44:58 | 42.71 | 96.4% |
| 17 | 2024-05-14 15:15:06 | 39.78 | 96.8% |