“Diferença entre == e ===” Respostas de código

diferença entre == e é

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

Diferença entre == e ===

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

Respostas semelhantes a “Diferença entre == e ===”

Perguntas semelhantes a “Diferença entre == e ===”

Mais respostas relacionadas para “Diferença entre == e ===” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código