fork download
  1. process.stdin.resume();
  2. process.stdin.setEncoding('utf8');
  3.  
  4. // your code goes here
  5. var calculator = function()
  6. {
  7. var x = 5;
  8. getx = function(){
  9. return x;
  10. }
  11. return { y:x, getx };
  12. }();
  13.  
  14. console.log(calculator.x)
Success #stdin #stdout 0.03s 130496KB
stdin
Standard input is empty
stdout
undefined