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 |
---|---|---|---|
45 | 2024-06-17 07:09:58 | 94.75 | 97.4% |
34 | 2023-12-18 09:57:07 | 65.51 | 97.2% |
9 | 2021-12-09 21:47:38 | 54.17 | 93% |
2 | 2021-12-09 21:38:09 | 52.06 | 92% |