Javascript 动态数组和对象
这可能吗?
所以我需要一个具有动态名称和内容的数组,可以扩展和访问。
object = {};
var two = ['thing', 'thing2'];
for(one in two){
object[two[one]] = [];
}
如果是,但不是这样,那么如何?
Is this possible?
So I need to have an array with a dynamic name and content what can be extended and accessed.
object = {};
var two = ['thing', 'thing2'];
for(one in two){
object[two[one]] = [];
}
If yes but not in this way, then how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这绝对是可行的,只需确保该对象拥有该属性并且它不是从原型链中的更高层继承:
for..in
:for
:This is definitely doable, just make sure that the object owns the property and it's not inherited from higher up in the prototype chain:
for..in
:for
: