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 |
|---|---|---|---|
| 67 | 2024-08-23 12:16:22 | 46.50 | 97.9% |
| 33 | 2024-08-11 12:19:56 | 41.51 | 97.6% |
| 6 | 2024-07-17 13:19:51 | 32.22 | 95.4% |