Zinalforzinal.hashnode.net·Jan 26, 2023Difference between '==' and '===' in JavaScriptvar one = 1; var one_again = 1; var one_string = "1"; // note: this is string console.log(one == one_again); // true console.log(one === one_again); // true console.log(one == one_string); // true console.log(one === one_string); // false As y...11 likes·70 readsNode.jsAdd a thoughtful commentNo comments yetBe the first to start the conversation.