View Pit Stop page for race #1 by maximum420 — Ghost race
View profile for learning (maximum420)
| Official speed | 24.22 wpm (149.13 seconds elapsed during race) |
|---|---|
| Race Start | January 27, 2023 8:22:01am UTC |
| Race Finish | January 27, 2023 8:24:31am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 91.0% |
| Points | 18.57 |
| Text | #10015 (Length: 301 characters) 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.'; } } |