Yogesh Chavan
Yogesh Chavan

Yogesh Chavan

Follow
homeSponsor MeMastering Redux Coursebadgesnewsletter
Tag

ES6

#es6

More content

Read more stories on Hashnode


Articles with this tag

Tricky JavaScript Interview Question Using Array And Object Destructuring Combined

Feb 16, 20235 min read

The question goes like this: Explain to me what the below line of JavaScript code does: const [{ isoCode: firstCode = '' } = {}] = allStates; If...

Tricky JavaScript Interview Question Using Array And Object Destructuring Combined

ES6 Promises: A Better Way of Handling Callbacks

May 17, 20217 min read

ES6 introduced promises as a native implementation. Before ES6 we were using callbacks to handle asynchronous operations. In this article, we'll...

ES6 Promises: A Better Way of Handling Callbacks

ES6 Import And Export Cheatsheet

Apr 26, 20218 min read

Before ES6 came into play, we used multiple script tags in a single HTML file to import different JavaScript files like this: <script...

ES6 Import And Export Cheatsheet

How to write easy to understand React code using class properties syntax

Nov 16, 20205 min read

Today we will see a way of simplifying React code by removing the need of binding every new event handler we add to the component. Take a look at the...

How to write easy to understand React code using class properties syntax

Simplify your React code using shorter setState syntax

Nov 15, 20206 min read

In this article, we will see how we can use the new ES6 shorter syntax which will make the setState call a lot simpler. So Let’s start with some...

Simplify your React code using shorter setState syntax

Why React applications do not work on Internet Explorer and how to make them work

Oct 29, 20206 min read

As you are aware, the latest ES6 features such as promises, arrow functions, etc may not be supported by older browsers, so we use Babel to convert...

Why React applications do not work on Internet Explorer and how to make them work