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 |
---|---|---|---|
50 | 2025-03-25 11:43:48 | 58.88 | 95.9% |
44 | 2025-03-25 11:34:25 | 47.98 | 93.5% |
28 | 2024-05-09 10:35:02 | 54.24 | 96.8% |