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 |
---|---|---|---|
32 | 2024-09-28 23:15:37 | 80.50 | 99% |
20 | 2024-09-28 23:00:18 | 70.56 | 96.8% |
10 | 2024-09-27 21:07:21 | 72.31 | 98% |
4 | 2024-09-27 20:58:15 | 74.14 | 98.6% |