In with-statement, how can i use the inject scope at inner function

32 Views Asked by At

how can i get $self variable in this code

const $sys = {};
Object.defineProperty($sys, 'comp', {
  get: function() {
    console.log('====', $self)
  }
});

with({ $self: 1 }) {
  console.log($sys.comp);
}

with seems like only works on its scope, but not work for inner scope

please do not move defineProperty into with expression

0

There are 0 best solutions below