Posts by Felipe Dominguesche • 11 points
2 posts
-
1
votes4
answers12404
viewsA: How to compare if two javascript objects are equal?
Convert both to a JSON string and compare strings: function compareObjects(obj1, obj2) { return JSON.stringify(obj1) === JSON.stringify(obj2); } But if objects are with attributes in different…
javascriptanswered Felipe Dominguesche 11 -
-4
votes8
answers44013
viewsA: How to remove auto complete input from google Chrome?
I managed to solve putting only one space in the email field in value, as the browser does not find an email that is a space, it does not fill anything and this space the browser itself cleans in…