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 |
---|---|---|---|
61 | 2024-12-18 06:15:14 | 57.32 | 96.6% |
57 | 2024-10-08 05:21:50 | 55.56 | 96.2% |
54 | 2024-10-08 05:18:19 | 56.09 | 97.7% |
5 | 2024-01-04 07:01:57 | 46.19 | 95.2% |