Skip to content Skip to sidebar Skip to footer

Lodash _.pullat Returning Undefined At Path

I'm using lodash in a react app to update and delete nested elements in an array that contains objects which subsequently update my component state and saves to localStorage. qu

Solution 1:

_.pullAt takes integers, not a string

_.pullAt(questions, 0)  
console.log(questions)  // output is []

Post a Comment for "Lodash _.pullat Returning Undefined At Path"