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 |
---|---|---|---|
74 | 2023-10-26 08:58:03 | 37.42 | 93.8% |
61 | 2023-07-21 06:57:33 | 45.68 | 98.6% |
60 | 2023-07-21 06:55:54 | 42.33 | 96.4% |
14 | 2023-07-10 09:22:15 | 38.17 | 97.6% |