dheeraj korangagyannbaato.hashnode.dev·Oct 13, 2024JavaScript Object LiteralIn JavaScript, an object literal is a simple way to define an object using a set of key-value pairs. You define an object literal by using curly braces {} and specifying properties inside it. const student ={ Name : "dheeraj", Uid : 9856, ...DiscussJavascript for BegineersJavaScript
saurabh suryavanshisaurabhsuryavanshi.hashnode.dev·Oct 13, 2023Understanding Prototypes in JavaScriptJavaScript, the cornerstone of modern web development, boasts a myriad of intriguing and unique features. One such feature is the prototype. When diving into JavaScript, especially for those new to programming, understanding prototypes is crucial to ...DiscussJavaScript