2nd iteration that fails test but can rm dplicates

This commit is contained in:
Fredrik Uddenfeldt 2023-05-19 20:52:56 +02:00
parent 7e377a42aa
commit 8e57c6e4c3
1 changed files with 30 additions and 1 deletions

View File

@ -1,14 +1,43 @@
// Second iteration that fails test but can remove duplicates from arrays:
const removeFromArray = function([arrayOne], [arrayTwo]) {
let combinedArray = [...arrayOne, ...arrayTwo];
let removeDuplicates = [...new Set(combinedArray)]
// console.table(removeDuplicates)
};
removeFromArray(["A", "B"], ["C", "D"])
// First iteration that fails all tests but can create an array:
const removeFromArray = function([array], args) {
/* const removeFromArray = function([array], args) {
function createArray(...args) {
let newArray = args
}
let oldArray = array;
let combinedArray = [...newArray, ...oldArray];
let removeDuplicates = [...new Set(combinedArray)]
};
*/
// NEXT need to find way to compare the two arrays
// i.e. compare "array" and "args"
// and check for duplicates..