View Pit Stop page for race #729 by mayham92 — Ghost race
View profile for Mikhail (mayham92)
| Official speed | 73.00 wpm (49.48 seconds elapsed during race) |
|---|---|
| Race Start | March 9, 2022 9:50:18pm UTC |
| Race Finish | March 9, 2022 9:51:07pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 98.0% |
| Points | 55.96 |
| 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.'; } } |