What are spread operators?

The spread operator is a new addition to the set of operators in JavaScript ES6 . It takes in an iterable (e.g an array) and expands it into individual elements. The spread operator is commonly used to make shallow copies of JS objects. Using this operator makes the code concise and enhances its readability.

Read more

What means && In React?

The && is the exact same operator as you would find in any javascript expression , such as… if( condition1 && condition2) { } It is a feature of javascript that an expression of the form… (condition1 && condition2) will evaluate to condition2, if condition1 is true, or null if condition1 is false.

Read more