“JS не равен нулю” Ответ

javaScript проверка, если не null

//Even if the value is 0, this will execute. 

if (myVar !== null) {...}

//If you don't want it to execute when it's 0, then set it as

if (myVar) {...}

//This will return false if var value is 0.
Rey

JS не равен нулю

if (variable !== null) {
	//code
}

//Or, if you're expecting null as a string ('null'):

if (variable != null) {
	//code
}

//!== means not equal to, just like !=, but !== checks that the datatype is the same, whereas != doesn't.
//Example: (null !== "null") = true		(null != "null") = false
The Angriest Crusader

Ответы похожие на “JS не равен нулю”

Вопросы похожие на “JS не равен нулю”

Больше похожих ответов на “JS не равен нулю” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования