Can I call public method from within private one:
var myObject = function() { var p = 'private var'; function private_method1() { // can I call public method "public_method1" from this(private_method1) one and if yes HOW? } return { public_method1: function() { // do stuff here } }; } ();