> There are no items in `[]` so that doesn't seem like a true statement to me.
It's true by [Vacuous_truth](https://en.wikipedia.org/wiki/Vacuous_truth). > So, at least consistency pulls towards `false`. You are misunderstanding what `includes` does when there is no argument. ```js [1].includes(); // false [void 0].includes(); // true ``` Consistency with `every` pulls towards `true`.
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

