pseudocode for next iteration

This commit is contained in:
Fredrik Uddenfeldt 2023-05-18 22:26:56 +02:00
parent 37407c8465
commit 7e377a42aa
1 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,13 @@ const removeFromArray = function([array], args) {
};
// NEXT need to find way to compare the two arrays
// i.e. compare "array" and "args"
// and check for duplicates..
// and remove the duplicate from the first array
// and finally return the new version of the first array
// check for methods here: https://dev.to/soyleninjs/3-ways-to-remove-duplicates-in-an-array-in-javascript-259o
// const removeFromArray = function() {};