ES6 - handler.has ()

L'esempio seguente definisce una classe Student con un costruttore che accetta firstName e lastNamecome parametri. Il programma crea un proxy e definisce un oggetto gestore. Ilhas() method dell'oggetto gestore viene chiamato ogni volta che viene utilizzato l'operatore in.

<script>
   class Student{
      constructor(firstName,lastName){
         this.firstName = firstName
         this.lastName = lastName
      }
   }
   const handler = {
      has: function(target,property){
         console.log('Checking for '+property+' in the object')
         return Reflect.has(target,property)
      }
   }

   const s1 = new Student("Tutorials","Point")
   const proxy = new Proxy(s1,handler)
   console.log('firstName' in proxy)
</script>

L'output del codice sopra sarà come indicato di seguito -

Checking for firstName in the object
true