Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
When two objects have the same properties but are not the same object. For example: ``` first = [1, 2, 3] second = [1, 2, 3] first is second # this is false first == second # true because they are equivalent ```