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 |
---|---|---|---|
282 | 2024-01-12 20:56:47 | 62.89 | 94.9% |
218 | 2024-01-09 01:51:54 | 59.00 | 94.6% |
181 | 2024-01-06 03:49:52 | 63.93 | 95.1% |
156 | 2024-01-05 16:07:25 | 59.37 | 95.1% |