Elijah Oyerindescribe.elijahthis.com·Sep 18, 2023Object Cloning in JavaScript (Deep vs. Shallow Copies) - A Comprehensive GuideIntroduction In the world of JavaScript, understanding how data is copied and referenced is crucial for preventing bugs and ensuring the correct behavior of applications. One of the most common sources of confusion is the difference between deep and ...Discuss·30 likes·107 readsJavaScript
Hatem Bassemsaadany.hashnode.dev·6 hours agoExplaining Value vs. Reference in JavaScriptJavaScript variables In JavaScript, a variable is a named reference to a memory location that can hold different types of data, such as numbers, strings, booleans, objects, or functions. To access a variable or modify the data stored in a variable, w...Discussjs
Abdul Shaikabdulshaik.hashnode.dev·Sep 20, 2023JavaScript Strings: A Comprehensive GuideStrings A string in JavaScript is a sequence of characters. Strings can be created by enclosing them in single quotes, double quotes, or backticks. For example: const str1 = 'Hello, world!'; const str2 = "Hello, world!"; const str3 = `Hello, world!`;...DiscussJavaScript
Luca Del PuppoProblog.delpuppo.net·Sep 20, 2023Unveiling the Magic: Exploring JavaScript SymbolsIntroduction to JavaScript Symbols JavaScript Symbols are a new primitive data type introduced in ECMAScript 6 (ES6). They are used as unique, non-string identifiers for object properties, useful in avoiding naming collisions and enabling more advanc...Discuss·183 readsThe JavaScript you don't knowJavaScript
Manish Kumarsdemanish.hashnode.dev·Sep 19, 2023Introduction to JavaScriptIntroduction to JavaScript JavaScript is a versatile and widely-used programming language that powers the interactive features and dynamic content of most websites on the internet. In this article, we'll explore what JavaScript is, its history, the d...Discuss·14 likes·37 readsJavaScript
raju ghoraicoderj001.hashnode.dev·Sep 19, 2023Mastering JavaScript One-Liners: Part 2In the first part of our journey towards mastering JavaScript one-liners, we explored some nifty tricks to simplify common coding tasks. Now, we're back with even more one-liners that will make your code shorter, sweeter, and more efficient. So, buck...DiscussJsJarganJavaScript
Argen Turatbekargen.hashnode.dev·Sep 19, 2023[TIL] Semantic VersioningVersions of the npm packages in the dependencies section of the package.json file follow Semantic Versioning (aka SemVer). An industry standard for software versioning aims to make it easier to manage dependencies. Libraries, frameworks or other tool...DiscussTILjs
Bindu Patidarbindu.hashnode.dev·Sep 19, 2023Should I learn Express JS before Nest JS?Whether you should learn Express.js before Nest.js depends on your existing knowledge and goals. Here's some information to help you decide: Understanding Express.js: Express.js is a minimal and flexible Node.js web application framework that provi...DiscussExpress.js
Yash Ghugardareyash-ghugardare-blogs.hashnode.dev·Sep 19, 2023Simplifying JavaScript with Useful Array MethodsArrays are an essential part of JavaScript, allowing you to store and manipulate lists of data. In this blog post, we'll explore some practical array methods that can make your JavaScript code more efficient and easier to understand. These methods ar...DiscussWeMakeDevs
Subham Singhsubham-cc99.hashnode.dev·Sep 19, 2023Asynchronous Programming Patterns in JavaScriptIntroduction As we know in synchronous programming, tasks are executed one after the other sequentially, asynchronous programming allows a program to continue executing other tasks while waiting for asynchronous operations to complete. It is really i...DiscussJavaScript - Basics to Advancedasynchronous
Elijah Oyerindescribe.elijahthis.com·Sep 18, 2023Object Cloning in JavaScript (Deep vs. Shallow Copies) - A Comprehensive GuideIntroduction In the world of JavaScript, understanding how data is copied and referenced is crucial for preventing bugs and ensuring the correct behavior of applications. One of the most common sources of confusion is the difference between deep and ...Discuss·30 likes·107 readsJavaScript