You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I must be the first person to care enough about this but, can we change someObject === anotherObject to check the object keys and values instead of checking the memory allocation of it.
The text was updated successfully, but these errors were encountered:
can we change someObject === anotherObject to check the object keys and values instead of checking the memory allocation of it.
No, and that is defined by the JavaScript language and ECMAScript specification and not by Node.js
This is 100% impossible for Node.js to do without breaking the whole ecosystem.
If you feel strongly about this I recommend you spend time contributing to proposals to improve JavaScript itself with this sort of capability like the record/tuple proposal which aims to add this capability to the language.
I must be the first person to care enough about this but, can we change
someObject === anotherObject
to check the object keys and values instead of checking the memory allocation of it.The text was updated successfully, but these errors were encountered: