document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. var simpleSingleton = {
  2.     var1: "singleton variable",
  3.     toString: function(){
  4.       return "This is from simple singleton";
  5.     }
  6. }
  7.  
  8. console.log(simpleSingleton.var1);
  9. console.log(simpleSingleton.toString());
');