10 Magical JavaScript Tips For Every Web Developer

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 …


This content originally appeared on DEV Community and was authored by Git Tricks

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 Git Tricks


Print Share Comment Cite Upload Translate Updates
APA

Git Tricks | Sciencx (2021-08-23T04:01:32+00:00) 10 Magical JavaScript Tips For Every Web Developer. Retrieved from https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/

MLA
" » 10 Magical JavaScript Tips For Every Web Developer." Git Tricks | Sciencx - Monday August 23, 2021, https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/
HARVARD
Git Tricks | Sciencx Monday August 23, 2021 » 10 Magical JavaScript Tips For Every Web Developer., viewed ,<https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/>
VANCOUVER
Git Tricks | Sciencx - » 10 Magical JavaScript Tips For Every Web Developer. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/
CHICAGO
" » 10 Magical JavaScript Tips For Every Web Developer." Git Tricks | Sciencx - Accessed . https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/
IEEE
" » 10 Magical JavaScript Tips For Every Web Developer." Git Tricks | Sciencx [Online]. Available: https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/. [Accessed: ]
rf:citation
» 10 Magical JavaScript Tips For Every Web Developer | Git Tricks | Sciencx | https://www.scien.cx/2021/08/23/10-magical-javascript-tips-for-every-web-developer-9/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.