JavaScript基本概念(2)

JavaScript基本概念(二)Passing ObjectsHeres an example of how you can assign an object to another v

JavaScript基本概念(二)
Passing Objects
Here's an example of how you can assign an object to another variable and then make a

>>> var fido = {breed: 'dog'};>>> var benji = {breed: 'dog'};Comparing them will return false:>>> benji === fidofalse>>> benji == fidofalse