This content originally appeared on DEV Community and was authored by DEV Community
In this article, we will discuss the 15 useful JavaScript tips for every web developer to save their valuable and precious time.
I am always ready to learn although I do not always like being taught
— Winston Churchill
Tip 1. Flatten the array of the array
This tip will help you to flatten a deeply nested array of arrays by using Infinity
in flat
.
var array = [123, 500, [1, 2, [34, 56, 67, [234, 1245], 900]], 845, [30257]]//flatten array of array
array.flat(Infinity)// output:
// [123, 500, 1, 2, 34, 56, 67, 234, 1245, 900, 845, 30257]
Tip 2. Easy Exchange Variables
You probably swap the two variables using a third variable temp
. But this tip will show you a new way to exchange variables using destructuring.
//example 1var a = 6;
var b = 7;[a,b] = [b,a]console.log(a,b) // 7 6
Read More: 10 Magical JavaScript Tips for Every Web Developer
This content originally appeared on DEV Community and was authored by DEV Community
DEV Community | Sciencx (2021-09-02T09:24:54+00:00) 10+ Magical JavaScript Tips For Every Web developer. Retrieved from https://www.scien.cx/2021/09/02/10-magical-javascript-tips-for-every-web-developer-11/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.