“Разница между == и ===” Ответ

разница между == и

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

Разница между == и ===

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

Ответы похожие на “Разница между == и ===”

Вопросы похожие на “Разница между == и ===”

Больше похожих ответов на “Разница между == и ===” по JavaScript

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

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