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 |
---|---|---|---|
114 | 2024-01-23 18:09:50 | 93.15 | 98.9% |
57 | 2024-01-18 15:31:17 | 94.10 | 98% |
56 | 2024-01-18 15:30:25 | 104.02 | 99.6% |
51 | 2024-01-17 02:45:02 | 91.30 | 97.5% |
41 | 2024-01-17 02:27:10 | 91.40 | 98% |
21 | 2021-11-16 20:21:04 | 68.82 | 97% |