Created
May 5, 2019 20:27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div> | |
<ul> | |
<li>First on the list</li> | |
<li>Second on the list</li> | |
<li>third on the list</li> | |
</ul> | |
</div> | |
<script> | |
let parentElem = document.querySelector('ul'); | |
let childElem = document.querySelector('li'); | |
parentElem.removeChild(childElem); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment