Abiel

Results 1 comments of Abiel

``` var b = 10; (function b(){ b = 20; console.log(this.b); })(); // 10 var b = 10; (function b(){ let b = 20; console.log(b); })(); // 20 ```