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 |
---|---|---|---|
94 | 2024-11-26 14:17:27 | 48.11 | 95.8% |
79 | 2024-08-20 13:18:38 | 48.54 | 95% |
71 | 2024-04-16 14:00:54 | 55.00 | 97.2% |
41 | 2024-01-31 14:34:06 | 47.98 | 95.7% |
31 | 2024-01-27 10:40:36 | 50.77 | 96.3% |
25 | 2024-01-19 10:46:08 | 44.97 | 94.3% |