MAMohd Asifindevasif-7.hashnode.dev·15h ago · 13 min readJavaScript Objects Explained: From Properties to Destructuring, Optional Chaining & MethodsHow Do You Work with Accessing Properties from Nested Objects and Arrays in Objects? When working with JavaScript, you'll often encounter complex data structures that involve nested objects and arrays00
MAMohd Asifindevasif-7.hashnode.dev·2d ago · 7 min readJavaScript Objects Explained: Properties, Methods & MoreWhat Is an Object in JavaScript, and How Can You Access Properties from an Object? In JavaScript, an object is a fundamental data structure that allows you to store and organize related data and funct00
MAMohd Asifindevasif-7.hashnode.dev·3d ago · 18 min readJavaScript Strings Explained: From length to includes()What the string is in JavaScript? A JavaScript string is a sequence of characters, typically used to represent text. We can either use a single quote ('') or a double quote ("") or a back-ticks (``) t00
MAMohd Asifindevasif-7.hashnode.dev·5d ago · 7 min readJavaScript Quirks That Will Make You Say “Wait, What?”Question - 1 console.log(null === undefined) //false Why it's false.👀 Expression*:* null === undefined Result*:* false Explanation In JavaScript, both null and undefined represent "empty" values00
MAMohd Asifindevasif-7.hashnode.dev·6d ago · 6 min readJavaScript Fundamentals: The Concepts Beginners Often MissVariable declaration without a keyword in JavaScript firsttName = "Ayan"; console.log(firsttName); JavaScript will execute this script, even without declaring the variable with any keyword (var, let,00