Travis build: 2165

This commit is contained in:
30secondsofcode
2018-06-19 17:59:43 +00:00
parent 1c8e535a41
commit 1e4ebaf4c0
15 changed files with 125 additions and 16 deletions

View File

@ -9,5 +9,5 @@ const insertBefore = (el, htmlString) => el.insertAdjacentHTML('beforebegin', ht
```
```js
insertBefore(document.getElementById('myId'),'<p>before</p>'); // <p>before</p> <div id="myId">...</div>
insertBefore(document.getElementById('myId'), '<p>before</p>'); // <p>before</p> <div id="myId">...</div>
```