View Pit Stop page for race #10 by elizabethwei — Ghost race
View profile for Elizabeth (elizabethwei)
| Official speed | 60.49 wpm (59.71 seconds elapsed during race) |
|---|---|
| Race Start | February 15, 2022 9:30:04pm UTC |
| Race Finish | February 15, 2022 9:31:04pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 46.37 |
| 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.'; } } |