Skip to content Skip to sidebar Skip to footer
Showing posts with the label Es6 Proxy

Major Use Cases For Es6 Proxies

I recently got to know about ES6 proxies but I don't see a good reason to use it. I mean, every… Read more Major Use Cases For Es6 Proxies

Es6 Proxy: Set() Trap Not Triggering, When Setting Inside Target Object's Method

Example: let foo = {bar: 'baz', method() { this.bar = 'baz2' }} let fooProxy = new … Read more Es6 Proxy: Set() Trap Not Triggering, When Setting Inside Target Object's Method

SessionStorage Proxy Class Scope

I am wondering how to access the native sessionStorage scope from within my custom methods. My exam… Read more SessionStorage Proxy Class Scope