As I understood there is no best practice for copying an Array in Javascript.
Would it be a could idea to use Array.filter, to copy an Array?
Something like:
var words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
const result = words.filter(word => word);
Because filter returns a new Array? Are there any disatvantages using this Method?