View Pit Stop page for race #1 by typerlad — Ghost race
View profile for typerlad (typerlad)
| Official speed | 75.61 wpm (47.77 seconds elapsed during race) |
|---|---|
| Race Start | August 13, 2020 11:25:15pm UTC |
| Race Finish | August 13, 2020 11:26:03pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.0% |
| Points | 57.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.'; } } |