View Pit Stop page for race #9 by skillz9600 — Ghost race
View profile for Kevin (skillz9600)
| Official speed | 57.94 wpm (62.34 seconds elapsed during race) |
|---|---|
| Race Start | February 1, 2023 6:25:56pm UTC |
| Race Finish | February 1, 2023 6:26:58pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 97.0% |
| Points | 44.42 |
| 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.'; } } |