first non-working version

This commit is contained in:
Fredrik Uddenfeldt 2023-05-17 22:22:07 +02:00
parent fb96215bc6
commit f11ffd66e6
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,11 @@
const removeFromArray = function() { const removeFromArray = function([x], [y]) {
let array = [x, y];
array.indexOf(0);
array.indexOf(1);
array.splice()
}; };