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 |
---|---|---|---|
34 | 2024-02-28 04:11:51 | 66.90 | 96.3% |
16 | 2024-02-15 18:48:59 | 70.55 | 97.4% |
11 | 2024-02-15 07:42:38 | 67.90 | 97.6% |