How to use arrays in javascript
Arrays are a great way of initializing several things into a variable. For example
const arrOfNum = [ 1, 2, 3, 4 ]
const participants = [ Daniel, James, Fried, Jakob ]
The participants which is a better example show all participants and initializ...
code-art4.hashnode.dev4 min read