当像 new(Date) 这样编写时,如何将参数传递给构造函数?
作为此问题的推论,如果您创建了使用语法 new (Date)
的 javascript 对象,如何传入任何构造函数参数/参数?
换句话说,是否存在与 new Date(2000)
等效的内容,或者您就是这样做的?
As a corollary to this question, if you created an object in javascript using the syntax new (Date)
how would you pass in any constructor args/params?
In other words is there an equivalent of new Date(2000)
or is that just how you would do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
括号返回所包含表达式的结果,因此这将起作用:
这与以下内容相同:
The parens return the result of the contained expression, so this will work:
This is the same as:
您是否尝试过:
新(日期)(2000)
?不完全是漂亮的代码...Have you tried:
new (Date)(2000)
? Not exactly pretty code...