{} gibi düz bir nesne literal'inin varsayılan prototype'ı nedir?- aFunction.prototype
- bObject.prototype✓
- cArray.prototype
- dnull, çünkü nesne literal'leri prototype'sız başlar
Açıklama:Her nesne literal'i örtük olarak
new Object() ile oluşturulmuş gibi davranır, bu yüzden içteki [[Prototype]]'ı Object.prototype'ı gösterir — toString, hasOwnProperty gibi metodlar buradan gelir. Yalnızca Object.create(null) prototype'sız bir nesne üretir (d).