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 |
---|---|---|---|
148 | 2023-10-10 18:02:12 | 35.90 | 92.6% |
141 | 2023-10-09 08:38:08 | 42.38 | 92.9% |
89 | 2023-09-25 15:19:13 | 40.76 | 92.3% |
87 | 2023-09-24 10:01:01 | 41.69 | 94.1% |
37 | 2023-09-06 09:43:45 | 37.40 | 93% |
36 | 2023-09-06 09:41:51 | 40.18 | 94% |
23 | 2023-08-29 15:32:36 | 38.54 | 93.6% |
17 | 2023-08-23 18:00:10 | 39.62 | 92.9% |
12 | 2023-08-21 17:48:58 | 38.81 | 93.5% |