Ilango RajagopalforIlango Rajagopalilango.hashnode.net·Sep 22, 2021FeaturedJavaScript's Temporal API fixes problems with the Date APIWorking with date and time in JavaScript Most web applications use some sort of time and date wrangling — activity logs, notifications, actions of users. The timestamp is a commonly used field in our databases. But the way to display them on the fron...Dev By RayRay and 1 other are discussing this2 people are discussing thisDiscuss·91 likes·667 readsJavaScript
Amy ShacklesforLast Known Good Configurationamyshackles.hashnode.net·Nov 24, 2020FeaturedWhy Is {} > []?TLDR version Relational Comparisons In JavaScript, the result of a relational comparison is determined by the Abstract Relational Comparison algorithm. The algorithm converts both sides of a comparison to primitive values and then returns the result...Discuss·61 likes·2.9K readsJavaScript
Vikrant BhatforVikrant Bhat's Dev Blogvikrantbhat.hashnode.net·Jul 4, 2020Javascript (ES2020) Nullish Coalescing( ?? ) and Optional Chaining ( ?. )ExplainedNullish Coalescing operator ( ?? ) It is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined, and otherwise returns its left-hand side operand. let's see some use-cases that you might encou...Discuss·60 likes·93 readsJavaScript
Sumit KumarforSumit Kumarsunnyp1201.hashnode.net·Apr 21, 2023History of JavaScript and EcmaScript?JavaScript Javascript was invented by Brenden Eich in 1995. It was developed for Netscape and became the ECMA-262 standard in 1997. Initially known as the mocha after sometimes its name LiveScript, Netscape changed the name to javascript so they c...Discuss·10 likesJavaScript
Akshat VishwakarmaforAkshat's Blogakshatv.hashnode.net·Mar 23, 2023Strict mode in JavaScript: What you need to knowIntroduction JavaScript is a popular programming language used for developing web applications. It is a loosely typed language, which means that it does not require variable declaration before use. This feature can be helpful in some cases, but it ca...Discuss·31 readsJavaScript
Arun RforSkill Safariedukeys.hashnode.net·Mar 10, 2023Understanding ES6 Functions in 3 minutes: Tutorial for beginnersES6 was released in 2015 and is also referred to as "ECMAScript 6." A standard scripting language used in JavaScript is ECMAScript, and the version of ECMAScript currently supported in contemporary browsers is ES5. ES6 makes coding simpler for progra...Discuss·89 readsSkill Safari
Moreshwar PidadiforMoreshwar's Blogsmoreshwar.hashnode.net·Mar 4, 2023Overview on HTML, CSS and JavaScriptWhat is HTML? Hyper Text Markup Language (HTML), is and building block for web development. It can be also considered one of the basics of web technologies. "Hypertext" refers to links that connect web pages, either within a single website or betwe...DiscussJavaScript Web Development
Asonye Chimdinma PraiseforPraise Asonye's blogpraiz21.hashnode.net·Feb 12, 2023Javascript(JS) vs ECMAScript(ES)JavaScript and ECMAScript are related general-purpose scripting languages, but they are not exactly the same thing. Both of these languages are supported by the latest web browsers, and hence, can be integrated to make a responsive web page or site. ...Discuss·1 like·38 readsProgramming Blogs
Upendra SahniforUpendra's blogupendrasahni.hashnode.net·Feb 11, 2023What are the Var,Let and Const keywords in JavaScript ?--> Var, Let and Const are keywords used in javascript to declare variables. Why are there three types of declarative keywords in javascript? --> In older versions of JavaScript we had only the Var keyword to declare variables but it has some drawbac...Discuss·23 likes·76 readsJavaScript
Nayden GochevforjNayden: Superhero with Java powersjnayden.hashnode.net·Feb 3, 2023JavaScript Inheritance in the OLD EcmaScript 5As you all know in JavaScript nowadays has classes and all crazy mambo jambo from other object-oriented programming languages. But this was not the case just a few years ago, and maybe it is not the case even today for you my dear reader so I would l...DiscussJavaScript
Damue Brandon BaweforBrandon Writes About Programmingdamue.hashnode.net·Feb 2, 2023Understanding the Spread Operator(...) in JavaScriptIn today's episode of talking about awesome JavaScript features, we are going to turn our attention to the Spread operator(...) or Spread syntax. At the end of this article, you'll find a curated list of the links to other articles I have written in ...Discuss·34 readsJavaScript
Prajwal V Naikforprajwal-dev.hashnode.net·Jan 28, 2023ECMAScript -supports different browserECMAScript What it is? ECMAScript is a scripting language specification on which JavaScript is based. Ecma International is in charge of standardizing ECMAScript. ECMA International is an industry association dedicated to the standardization of infor...Discuss·40 readsecmascript
Rahul PanchalforRahul Panchalrahulpanchal.hashnode.net·Jan 21, 2023JavaScript EvolutionJavaScript is a programming language that was initially released in 1995. It was developed by Netscape Communications as a way to add interactive elements to web pages. Since its initial release, JavaScript has undergone significant changes and has b...Discuss·34 readsJavaScript