Giriş
Açıklaması şöyle. Yani property global olmasına rağmen değeri değiştirilemez.
Örnek
Şöyle yapmaka daha iyi.
Açıklaması şöyle. Yani property global olmasına rağmen değeri değiştirilemez.
İster global ister yerel olsun ismi undefined değişken yaratmamak lazım.In modern browsers (JavaScript 1.8.5 / Firefox 4+), undefined is a non-configurable, non-writable property per the ECMAScript 5 specification. Even when this is not the case, avoid overriding it.
Örnek
Şöyle yapmaka daha iyi.
var undefined = 'hello';
Şöyle yapmaka daha iyi.(()=>{
var undefined = 'hello';
...
})()
Hiç yorum yok:
Yorum Gönder