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 |
---|---|---|---|
83 | 2025-06-20 18:23:13 | 57.26 | 96% |
67 | 2023-08-28 12:26:51 | 59.26 | 95.4% |
51 | 2023-08-09 17:53:45 | 61.25 | 95.3% |
46 | 2023-08-08 14:22:26 | 52.08 | 94.1% |
38 | 2023-08-04 18:46:14 | 50.46 | 93.8% |
19 | 2023-07-18 15:07:50 | 51.02 | 94.7% |
17 | 2023-07-15 16:50:44 | 56.04 | 95.5% |
4 | 2023-07-05 16:33:27 | 46.63 | 94.7% |