Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 16th, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function Universe(){
  2.         this.value = 42;
  3.         var _this = this;
  4.         return {
  5.                 getAnswer : function(){
  6.                         return 'answer is ' + _this.value;
  7.                 }
  8.         };
  9. };
  10. var universe = Universe();
  11. console.log(universe.getAnswer());