Travis build: 758

This commit is contained in:
30secondsofcode
2018-11-10 09:23:46 +00:00
parent 85ad8f1783
commit b93bb0deb3
3 changed files with 1486 additions and 1486 deletions

View File

@@ -3647,7 +3647,7 @@ Hides all the elements specified.
Use `NodeList.prototype.forEach()` to apply `display: none` to each element specified.
```js
const hide = els => els.forEach(e => (e.style.display = 'none'));
const hide = (...el) => [...el].forEach(e => (e.style.display = 'none'));
```
<details>