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 |
---|---|---|---|
56 | 2025-06-27 17:22:43 | 33.57 | 93% |
55 | 2025-06-27 17:20:47 | 32.08 | 93% |
29 | 2025-06-22 11:53:13 | 29.30 | 91% |