BDBiki Dekainbiki321.hashnode.dev·Jan 24, 2022 · 2 min readObjects in JavascriptObject is the one of 6 primary types in javascript and most of the things in JS is built on top of Object. It can be constructed in two ways var obj = { a : 2 } var obj = new Object(); obj.key = value; Then to access the properties we need to use...00
BDBiki Dekainbiki321.hashnode.dev·Jan 24, 2022 · 3 min readA bit about Javascript's prototype chainJavascript objects have an internal property called prototype, which is simply a reference to another object and that object also has prototype property which may point to null or another object. This is called Prototype chain in javascript. var myO...00
BDBiki Dekainbiki321.hashnode.dev·Jan 23, 2022 · 4 min readJavascript's "this" bindingthis keyword in Javascript can sometimes be confusing due to lack of proper knowledge. Here I am going to discuss how this work. this belong to a Javascript function. Inside a function this keyword refers to an object. var a = 4; function fun() { ...00