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 |
---|---|---|---|
94 | 2024-09-16 09:38:01 | 27.52 | 96.3% |
48 | 2024-07-08 10:44:14 | 27.79 | 95.2% |
24 | 2024-06-23 19:19:06 | 33.42 | 97.7% |
21 | 2024-06-23 19:13:33 | 29.46 | 98.1% |