javascript singleton


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var myVar = new function test(){
  2. var privateMember = value;
  3. this.publicMember = value;
  4. }

URL: http://dhtmlkitchen.com/learn/js/singleton/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.