Array.prototype.uniq = function () { let arr = this let newArr = [] arr.forEach(item => !newArr.includes(item) && newArr.push(item)) &n...