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 trialGeno Guerrero
4,549 PointsLooking for help with the last question. Using expect(clone).to.be.an('object');
Looking for help with the last question. Using expect(clone).to.be.an('object');
1 Answer
Michael Liendo
15,326 Pointsif an object is the exact same object ie. the same object in memory, it's known as being "strictly equal" and that's used in JS with the === operator. But if we only want to check to see if the contents inside of an object are the same, that's known as being "deep"ly equal.
expect(clone({hi:"hello"})).to.deep.equal({hi:"hello"});