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 |
---|---|---|---|
155 | 2025-06-10 12:43:24 | 70.40 | 94% |
127 | 2025-04-24 16:41:57 | 73.39 | 94.9% |
122 | 2025-04-20 12:10:20 | 70.72 | 93.6% |
94 | 2025-03-25 15:25:27 | 75.31 | 93.8% |
88 | 2025-03-19 17:45:28 | 75.41 | 95.5% |
73 | 2025-03-04 06:31:15 | 81.85 | 95.8% |
33 | 2025-01-26 09:14:57 | 83.20 | 97.4% |
22 | 2025-01-15 15:11:11 | 80.42 | 96.5% |