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 |
---|---|---|---|
30 | 2024-04-28 11:03:05 | 62.41 | 95.7% |
27 | 2024-04-18 04:29:04 | 63.68 | 96.8% |
23 | 2024-03-30 11:34:30 | 62.43 | 96.2% |
21 | 2023-11-07 15:07:54 | 50.70 | 94.4% |
16 | 2023-09-11 05:20:19 | 59.12 | 97.1% |