Skip to content
Advertisement

React | JavaScript : Need to compare two objects

Objective:

I need to check if the form has been edited by the user or not. If yes, then I will call the axios.put() function.

Issue:

Since in JS, obj1 = { name: “John “} !== obj2 = { name: “John” } I am looking for a better way to compare two objects.

My way(seems inefficient) :

JavaScript

I would really appreciate the help. Thanks in advance.

Advertisement

Answer

If you have use lodash then it’s much simplier

JavaScript

https://lodash.com/

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement