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 |
---|---|---|---|
89 | 2024-02-13 08:10:53 | 84.85 | 99.3% |
82 | 2024-02-13 08:04:23 | 73.28 | 97.4% |
55 | 2024-02-13 03:39:55 | 67.79 | 97.5% |
35 | 2024-02-13 03:17:32 | 74.07 | 95.8% |
32 | 2024-02-13 03:12:33 | 79.19 | 97.7% |
19 | 2023-08-10 06:11:10 | 74.38 | 97.7% |
10 | 2023-08-10 06:01:38 | 66.61 | 96.5% |
7 | 2023-08-10 05:57:42 | 75.43 | 97.7% |