© 2022 Hashnode
#es6
Hello everyone hope you are all doing well, My name is Surya L. The aim of this blog is to tell you All The ES6 Concepts You need to know in JavaScript. How to Mutate an Array Declared with const vari…
Strings in Js is simply text wrapped in quotes. You can use double or single quotes, just be consistent. let myName = 'Gayatri'; let myFullName = "Gayatri Kumar"; let friendsName = 'Pabo Shivrav'; In…
In JavaScript land, with the release of ES6, a ton of new features have been released. To me JS is always going to seem like that language which is constantly trying to make up for its mistakes and th…
The development of technology is very fast in this day and age. Our ease of accessing information is available every second. Especially for programmers, there are always tools that make it easier and …
💡 “So if you want to go fast, if you want to get done quickly, if you want your code to be easy to write, make it easy to read.” -By Robert C. Martin JavaScript has progressed a ton in recent year…
To many, jQuery is a relic of the past. But to newcomers and the unsuspecting, it may still seem like an attractive choice for quickly building interactive websites or web applications. Despite being …
whenever you hear that, it is about moving data from a child component to some parent component to either use it there or to then pass it down to some other child component.
We have always used boolean operands up until now when we work with logical operators. In javascript, we can make use of non-boolean values as well with logical operators(&&, || ) which is known as sh…
In the previous lecture, we used object destructuring to add object properties as dependencies to useEffect(). const { someProperty } = someObject; useEffect(() => { // code that only uses somePrope…
Normal Desctructring: const { isValid} = emailState; Same as : const isValid = emailState.isValid ;* Destructuring with an alias const { isValid: emailIsValid } = emailState; Same as : const emailI…