JavaScript: Array & Methods
ARRAYYYS, are the most used data structure in our programming life, they're used to store ordered collections.
const arr = [ 'hey', "what's", 'up?' ];
console.log(arr); // [ 'hey', "what's", 'up?' ]
Previously we've gone through Strings and their ...
codetoomuch.hashnode.dev3 min read