let arr = ['string1', 'string2']; arr = ['string1', ...arr]
let arr = ['string1', 'string2']; arr =Array.from(new Set(['string1', ...arr]));