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 |
---|---|---|---|
60 | 2024-09-26 00:08:40 | 50.98 | 96.2% |
52 | 2024-09-25 23:14:15 | 50.51 | 96.6% |
37 | 2024-09-24 00:07:44 | 53.18 | 97.4% |
22 | 2024-09-22 23:21:04 | 46.09 | 96.5% |
4 | 2024-09-22 21:05:45 | 47.02 | 96.6% |