Answers for "remove the duplicants in nested array javascript"

0

javascript remove duplicate in two arrays

array1 = array1.filter(function(val) {
  return array2.indexOf(val) == -1;
});
// Or, with the availability of ES6:

array1 = array1.filter(val => !array2.includes(val));
Posted by: Guest on April-27-2020
1

Remove duplication from array in javascript

const names = ["Alvi", "Arham", "Talha", "Safi", "Sameer", "Nazmi", "labli", "Arham", "Talha", "Labiba", "Tabassum", "Adiba"];
function removeDuplication(names) {
    const unique = [];
    for (element of names) {
        if (unique.indexOf(element) == -1) {
            unique.push(element)
        }
    }
    return unique;
}
console.log(removeDuplication(names));
//Output:
/* [
    'Alvi',
    'Arham',  'Talha',
    'Safi',   'Sameer',
    'Nazmi',  'labli',
    'Labiba', 'Tabassum',
    'Adiba'
] */
Posted by: Guest on December-17-2021

Code answers related to "remove the duplicants in nested array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language