Anubhav Kumar Guptaanubhav2103.hashnode.dev·Dec 20, 2024ES6 Features in JavaScript.JavaScript has evolved over the years, and ECMAScript (or ES) is the standard that defines its updates and features. One of the most significant updates came with ES6 (2015), which introduced modern programming techniques like Object-Oriented Progra...8 likesJavaScript
Bharat Singhbharatblogs.hashnode.dev·Dec 7, 2024Basics of JavaScriptHi Folks, In this article we are going to learn about some basic concept of JavaScript like PEMDAS Rule, Template Literals and Semi-colon. This is the part2 of JavaScript Introduction, If you haven’t read part1 then I would suggest you to read if fir...JavaScript
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 6, 2024Day 16: Mastering Modern JavaScript - Key Features of ES6Today was meant to be a relaxed writing session for our Day 16 blog post, complete with a glass of white wine. But after a quick stop at the ShopRite mall to pick up a new facial product (as you may have seen in my latest tweet on X), I missed the ch...10 likesJavaScript
SB'Techsharesbtechshare.hashnode.dev·Oct 2, 2024The Secret JavaScript ES6 Features That Big Tech Doesn’t Want You to KnowJavaScript has come a long way since its inception, and with the release of ECMAScript 2015 (ES6), it gained a plethora of powerful features that revolutionized the way developers write code. While many of these features are well-known and widely use...ES6
Darshit Anjariadarshitanjaria.hashnode.dev·Aug 29, 2024Mastering JavaScript: The Battle Between concat() and Template literalsWhen it comes to concatenating strings in JavaScript, developers often have two main options: using the concat() method or template literals (backticks). While template literals offer a modern and convenient way to combine strings, there are still va...29 readsJavaScript
Godspower Amanzegreekleonard.hashnode.dev·Jul 23, 2024Enhance Your JavaScript Skills with ES6 FeaturesThe ES6 syntax is arguably one of the most significant updates ever made in the evolution of the JavaScript ecosystem. It offers a series of modifications that simplify everyday programming operations and enhance your web development experience.Wheth...JavaScript
Piyush NanwaniforAtomxelblog.atomxel.com·Feb 13, 2024JavaScript Essentials for React Native - #4 ES6 and BeyondHere, we will talk about examples on de-structuring, rest/spread operators and template literals De-structuring assignment Array De-structuring Example let arr = ["Art", "Vandelay"]; let [firstName, lastName] = arr; console.log(firstName); // Art co...2 likes·35 readsReact
Ricardo Rocha // 👨💻bittonic.hashnode.dev·Feb 12, 2024💡Unlocking the Secrets: A Conversational Dive into JavaScript VariablesLet's chat 💬 about JavaScript variables – those containers where you stash your data, like a digital backpack for your code. 🤨 What is a variable? Variables are like boxes. You give each box a name (the variable name) and throw stuff (data) inside ...JavaScript
Akash Thoriyaakashthoriya.hashnode.dev·Jan 20, 2024Template Literals in ES6Expert-Level Explanation Template literals in ES6 are a significant enhancement for creating strings in JavaScript. They allow multiline strings, embedded expressions, and string interpolation. Enclosed by backticks (`), they make strings more readab...JavaScript Fundamentals for InterviewsJavaScript
Fernando De La Madriddeadcode.hashnode.dev·Dec 16, 2023Advanced Template Literals Techniques in TypeScriptWe recently talked about template literals and how you can use them to do different types of checks as well as string manipulation. Today we are going to take it one step further and expand our knowledge of template literals and combine them with oth...33 readsTypeScript FundamentalsTypeScript