Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function insertItem(array, action) {
  2. return [
  3. ...array.slice(0, action.index),
  4. action.item,
  5. ...array.slice(action.index)
  6. ]
  7. }
  8.  
  9. function removeItem(array, action) {
  10. return [...array.slice(0, action.index), ...array.slice(action.index + 1)]
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement