If you want to deep clone an object in React? You need to make a deep copy. Lodash’s cloneDeep makes this easy:
1 2 3 |
import cloneDeep from 'lodash/cloneDeep'; const oldMessages = cloneDeep(this.state.messages); oldMessages[0].id = 123; |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.