Last active
September 16, 2019 05:27
-
-
Save phwb/825405d3b076a4b62695701324f1f303 to your computer and use it in GitHub Desktop.
This file contains 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
// Не правильно | |
// нашли элемент | |
var element = document.querySelectro('.parent'); | |
function doSomeThing() { | |
// используем глобальную переменную внутри функции, не надо так! | |
element.textContent = 'Hello, world!'; | |
} | |
doSomeThing(); | |
// Правильно | |
// сначала объявили функцию | |
function doSomeThing(elem) { | |
elem.textContent = 'Hello, world!'; | |
} | |
// нашли элемент | |
var element = document.querySelectro('.parent'); | |
// передали найденный элемент в фукнцию | |
doSomeThing(element); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment