Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPedro Lopes
4,281 PointsDifference between == || ===
for exe:
if (X==A)
if (X===A)
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointswhen you use == JS will attempt to coerce the type of one operand to match the type of the other, then check for value equality. when you use === JS will not coerce types, so if they are not the same, the equality test will fail. so '5' == 5 is true due to type coercion, while '5' === 5 is false, because no coercion has occurred.
Pedro Lopes
4,281 PointsPedro Lopes
4,281 Pointsthx for help! the same happen, for example when: float==int; float===int; ?