Object Equality in JavaScript
It's really easy to compare number or strings but did you try comparing two objects ๐ค
Even if two object has same key and value pair it will return false.
example:
let name = {
firstName: "suprabha",
lastName: "supi"
}
let fullName = {
...
suprabhasupi.hashnode.dev3 min read
Faheem Khan
Web Developer, content creator.
This was a nice read for me , Suprabha. Well explained. ๐ฅ