Future Javascript: New Array Methods Coming soon
In previous articles, I've covered that Javascript stores objects and arrays in heap storage. That means that an array is created once, and then any updates to it in the future will update that original array. For example:
let myArray = [ 1, 2, 3 ];
...
fjolt.hashnode.dev4 min read