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 |
---|---|---|---|
87 | 2023-07-15 22:37:37 | 29.59 | 94.9% |
83 | 2023-07-15 22:27:24 | 23.23 | 93.5% |
66 | 2023-07-14 05:15:11 | 28.69 | 91.5% |
62 | 2023-07-14 05:04:38 | 27.99 | 92.3% |
51 | 2023-07-14 04:37:40 | 31.12 | 94.5% |
17 | 2023-07-13 18:50:38 | 20.73 | 92.2% |
14 | 2023-07-13 18:40:58 | 25.33 | 93.2% |
8 | 2023-07-11 20:31:31 | 22.06 | 92.1% |
3 | 2023-07-11 20:20:22 | 21.76 | 91.3% |