Skip to content

Conversation

@vardhan30016
Copy link

Added New Question: Difference Between == and === in JavaScript

Description:
This pull request adds a new JavaScript interview question explaining the key difference between == (loose equality) and === (strict equality), including examples and best practices.

Example Code:

console.log(5 == '5');   // true
console.log(5 === '5');  // false

@sudheerj
Copy link
Owner

sudheerj commented Nov 6, 2025

@vardhan30016 I think this question is already present.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants