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 |
---|---|---|---|
126 | 2023-09-22 19:57:52 | 38.51 | 94.4% |
113 | 2023-09-13 12:26:03 | 41.54 | 92.9% |
76 | 2023-08-16 09:22:38 | 42.93 | 92.1% |
37 | 2023-08-09 19:54:49 | 38.11 | 93.3% |