I want to know if there is a way to do this without make a full copy of the array and then splice the copy.
var arr = [{id:1, name:'name'},{id:2, name:'name'},{id:3, name:'name'}];
I need to temp remove element by his index and use the array without this element, but i dont want to change the original array.
You can give me way even with lodash.