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 |
|---|---|---|---|
| 33 | 2024-11-19 23:06:02 | 70.63 | 97% |
| 25 | 2024-11-19 11:23:03 | 62.31 | 94.8% |
| 17 | 2024-11-18 09:59:41 | 63.88 | 95.7% |
| 13 | 2024-11-17 21:45:17 | 62.55 | 94.6% |