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 |
---|---|---|---|
53 | 2024-02-23 08:13:06 | 59.08 | 95.7% |
41 | 2023-12-27 13:54:52 | 64.49 | 96.6% |
1 | 2023-07-26 06:59:03 | 61.87 | 96.9% |