Javascript中如何不调用构造函数实例化一个对象?

Javascript中如何不调用构造函数实例化一个对象?

翻阅古今
浏览 672回答 5
5回答

慕斯王

最简单的,对象字面量啊~var obj = {};

繁华开满天机

你是说实例化一个类吧,对于用户自定义的类,new f(a, b, c)相当于// Create a new instance using f's prototype.var newInstance = Object.create(f.prototype), result;// Call the functionresult = f.call(newInstance, a, b, c),// If the result is a non-null object, use it, otherwise use the new instance.result && typeof result === 'object' ? result : newInstance答案摘自这里

小唯快跑啊

function createPeople(name,age){   var o = {};   o.name = name;   o.age = o.age;   return o;}var people = createPeople('chen',30);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript