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 |
---|---|---|---|
123 | 2024-12-08 06:33:36 | 38.17 | 94.8% |
109 | 2024-11-29 10:21:21 | 41.86 | 96.2% |
80 | 2024-11-28 07:58:49 | 35.44 | 94.7% |
62 | 2024-11-27 04:06:48 | 42.06 | 95.2% |
55 | 2024-11-27 03:55:46 | 40.03 | 95.5% |
54 | 2024-11-27 03:54:02 | 35.70 | 94.2% |
28 | 2024-11-24 03:30:34 | 33.75 | 93.1% |
21 | 2024-11-24 03:14:38 | 35.19 | 94.1% |
20 | 2024-11-24 03:12:29 | 36.27 | 94.3% |