我有一个名为config
的数组,在这个数组中我已经推送了几个变量/对象(我不确定变量或对象是否是正确的术语),如下所示:
var config = [];
var example1 = { x : 12, y : 5 };
var example2 = { x : 17, y : 4 };
var example3 = { x : 11, y : 9 };
config.push(example1);
config.push(example2);
config.push(example3);
现在我想获取所有这些变量/对象的名称并执行其名称的console.log。我尝试过以下方法:
for(i = 0; i < config.length; i++)
{
console.log(config[i].constructor.name);
}
如何获取变量/对象的名称?我不想要它的任何属性或值,只需要名称。循环应该只需登录控制台,如:
example1
example2
example3