Kyle Simpson的OLOO风格与此类似:
let myObject = {
init: function(){
// initialize here
},
// other methods here
};
let instance = Object.create(myObject); // create instance using "myObject" as prototype
instance.init(); //initialize object
如何使用JSDoc进行记录?在生成的文档中,@class
和@constructs
标签都表示使用new
关键字,就像new myObject
一样。但是,正如您所看到的,这不是目的。
推荐的方法是什么?