When I learned about these tips, they became treasures to me.
1.Filter unique values
We occasionally need to correctly filter unique values. For instance, if you use social media, our buddies are connected. Those mutual fronts are the antithesis of unique friends, or non-mutual friends.
Sets are what we use for that.
A set is a group of clearly defined data, i.e., non-empty, diverse, and distinct.
2. Comma Operator
From left to right, the comma operator (,) evaluates each of its operands before returning the value of the last operand.
3.Swap Values With Array Destructuring
It's never been so simple to swap values; typically, we construct a temporary variable and then write temporary = b; b = a; a = temporary;.
But you get a headache from that, right?
In any case, you can now just swap using array destructuring:
3 JavaScript Techniques You Must Know
Reviewed by betheprogrammer
on
November 17, 2022
Rating:
No comments:
If you have any doubts.Please let me know