j
k
j a
j l
why do
replace(({1,2,3}),2,17);
(6) Result: ({ /* 3 elements */ 1, 17, 3 })
work, while
replace(({1,2,3}),({2}),({17}));
(5) Result: ({ /* 3 elements */ 1, 2, 3 })
does nothing?
Back to the thread
Back to the list