JSFiddle - React, Tailwind, and code Playground
by Nikola Mihin
JavaScript
// CODE SNIPPET LIBRARY
// SINGLE PUSH TO THE END O(1)
const artists = ['michael', 'elvis'];
const newArtists = artists.push('charlie');
console.log(artists);
// MERGE TWO ARRAYS PUSH O(N)
const oldArtists = ['john', 'ann'];
const allArtists = oldArtists.concat(artists);
console.log(allArtists);