How to test same object instance in Javascript?

前端 未结 2 1764
孤独总比滥情好
孤独总比滥情好 2021-02-11 19:17

Say I have the following objects in Javascript:

var a = { xxx: 33 };
var b = { xxx: 33 };
var c;

c = a;

What is the Javascript test that will

2条回答
提交回复
热议问题