Skip to content

Instantly share code, notes, and snippets.

View olavfosse's full-sized avatar
👨‍🔬
building

Olav Fosse olavfosse

👨‍🔬
building
View GitHub Profile
const removeFromArray = function (){ // Takes an array and an arbitrary amount of primitive values. Returns an array where all elements from the array which are equal to one of the primitive value are removed.
arguments = Array.prototype.slice.call(arguments);
let array = arguments[0];
let valuesToRemove = arguments.slice(1);
let newArray = [];
array.forEach(element => {
if(!(valuesToRemove.includes(element))) {
newArray.push(element);
}
});