I have a class similar to the one below. How do I call my init method when the object is created? I don\'t want to have to create an instance of my object then call
init
There is even more smooth way to do this:
this.init = function(){ // method body }();
This will both create method and call it.