How to test same object instance in Javascript?

前端 未结 2 2078
天命终不由人
天命终不由人 2021-02-11 19:04

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条回答
提交回复
热议问题