“JS nie równe NULL” Kod odpowiedzi

JavaScript Sprawdź, czy nie 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 nie równe NULL

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

Odpowiedzi podobne do “JS nie równe NULL”

Pytania podobne do “JS nie równe NULL”

Więcej pokrewnych odpowiedzi na “JS nie równe NULL” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu