🚨 #JavaScript tip alert 🚨
Do you ever find yourself needing to create a copy of an array, but don't want to modify the original? There's a quick and easy solution using the spread operator (...).
Check it out:
🚨 #JavaScript tip alert 🚨
Did you know that variables and function declarations are "hoisted" to the top of their scope in JavaScript? This means you can use a variable or call a function before it is declared in the code.
For example: