JAVASCRIPT #1903
Unanswered
gaurav kushwah (gauravkushwah8518-rgb)
asked this question in
Q&A
JAVASCRIPT
#1903
Replies: 1 comment
|
Yes you are right |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm learning JavaScript and I'm a little confused about the difference between
==and===.I understand that
===checks both value and type, while==can perform type conversion. But in real-world JavaScript projects, should I always prefer===?Are there any situations where using
==is actually recommended?All reactions