如何检查两个或多个对象/变量是否具有相同的引用?

最佳答案

您使用=====:

var thesame = obj1===obj2;

From the MDN :

08-17 14:00