remove multiple values from array javascript
const nums = [1, 2, 3, 4, 5, 6];
const remove = [1, 2, 4, 6];
function removeFromArray(original, remove) {
return original.filter(value => !remove.includes(value));
}
remove multiple values from array javascript
const nums = [1, 2, 3, 4, 5, 6];
const remove = [1, 2, 4, 6];
function removeFromArray(original, remove) {
return original.filter(value => !remove.includes(value));
}
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'
] */
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us