I would like to initialize an object in javascript ..
My code is as follows:
var PageSlider = { sliders: [], addSlider: function(display, target, itemClass, width, height, itemsPerPage, defaultPage){ var slideConfig = { display : display, target : target }; var slider = this.createSlider(slideConfig); slider.initSlider(); this.sliders.push(slider); }, copy : function(obj) { if (null == obj || "object" != typeof obj) return obj; var copy = obj.constructor(); for (var attr in obj) { if (obj.hasOwnProperty(attr)) copy[attr] = obj[attr]; } return copy; }, getInstance : function(){ var copy = PageSlider.copy(PageSlider); this.sliders.length = 0; return copy; } }
Using the getInstance () method, just copy the object. I need to do to get an instance of an object.
Help me please. Thanks.
source share