<script> function snikers(){ this.t = function (){ alert("Привет Мир!"); } } vat obj = new snikers(); obj.snikers(); </script>
function snikers(){ this.t = function (){ alert("Привет Мир!"); } } var obj = new snikers(); obj.t();
function foo(a) { this.a = a; } foo.prototype.bar = function () { alert(this.a); }; var obj = new foo('Привет Мир!'); obj.bar();