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 |
|---|---|---|---|
| 42 | 2023-09-27 22:27:08 | 30.86 | 98.7% |
| 7 | 2023-08-11 17:32:36 | 25.60 | 94.1% |