“Różnica między == i ===” Kod odpowiedzi

Różnica między == a jest

string = "69"
integer = 69

print(string is integer) # Prints False, as the values are the same but NOT the datatypes
print(string == integer) # Prints False, as the values are the same (a type check is not performed with ==)
The Angriest Crusader

Różnica między == i ===

    console.log(1=="1"); /*true, same value*/
    console.log(1==="1")/*false, same value, different type*/
Javasper

Odpowiedzi podobne do “Różnica między == i ===”

Pytania podobne do “Różnica między == i ===”

Więcej pokrewnych odpowiedzi na “Różnica między == i ===” w JavaScript

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

Przeglądaj inne języki kodu