首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

JavaScript基本概念(2)

2012-10-08 
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

热点排行