No products in the cart.
< 1 min read
Manageability
Warning
Catalog UI Policy
SN-0354
The double equals operator can give unexpected results when comparing objects of different types.
Use the triple equals operator.
5 min
if (var == ‘howdy’) {…} // Noncompliant
if (var === ‘howdy’) {…}
There was a problem reporting this post.
Please confirm you want to block this member.
You will no longer be able to:
Please allow a few minutes for this process to complete.