JavaScript 构造相当于 PHP 的 list()?
分配:
list($b,$c,$d) = array("A","B","C");
在 PHP 中,您可以执行如下 JS 中有类似的东西吗?
Possible Duplicate:
Javascript equivalent of PHP's list()
In PHP you can do assignment like this:
list($b,$c,$d) = array("A","B","C");
Is there anything like that in JS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,从 JavaScript 1.7 开始,这是可能的,
您可以执行以下操作:
Yes this is possible since JavaScript 1.7
You can do:
人们似乎讨厌 javascript 中的 with() 结构,但无论如何......
People seem to hate the with() construct in javascript, but anyway...
我相信这是在 JavaScript 1.7 中引入的。这意味着您还不能在大多数浏览器中真正使用它。
有关更多详细信息,请参阅 MDN。
I believe that was introduced in JavaScript 1.7. Which means you can't really use it yet in the majority of browsers.
See MDN for more details.