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 |
---|---|---|---|
72 | 2023-07-08 11:23:27 | 39.24 | 96.8% |
70 | 2023-07-07 07:42:01 | 32.35 | 96.5% |
51 | 2023-07-02 06:12:55 | 32.95 | 94.9% |
47 | 2023-07-02 06:04:44 | 38.76 | 98.6% |
43 | 2023-07-02 05:57:17 | 28.01 | 95.4% |
11 | 2023-06-28 12:30:36 | 36.26 | 97.4% |
4 | 2023-06-28 12:15:52 | 39.58 | 97.3% |
2 | 2023-06-28 12:11:57 | 36.07 | 96.8% |