Daniel Fabián

Results 1 issues of Daniel Fabián

The error as documented in the official docs [https://quick-lint-js.com/errors/E0718/](https://quick-lint-js.com/errors/E0718/) implies that the following scenario should throw an error: ```js const bug = { milestone: null }; console.log(bug.milestone); // null console.log(bug.milestone?.name);...