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 |
---|---|---|---|
55 | 2024-11-20 16:25:47 | 52.09 | 96.8% |
44 | 2024-05-25 11:29:30 | 53.81 | 97% |
21 | 2024-03-21 20:06:07 | 46.41 | 96.5% |
3 | 2024-01-03 20:17:05 | 48.90 | 96.1% |
1 | 2024-01-03 20:14:36 | 43.41 | 95.7% |