JavaScript – Use === Comparison – Catalog UI Policy scriptTrue

< 1 min read

Impact Area

Manageability

Severity

Warning

Affected Element

Catalog UI Policy

Rule number #

SN-0354

Impact #

The double equals operator can give unexpected results when comparing objects of different types.

Remediation #

Use the triple equals operator.

Time to fix #

5 min

Code examples #

Noncompliant code #

if (var == ‘howdy’) {…} // Noncompliant

Compliant code #

if (var === ‘howdy’) {…}

Updated on March 21, 2025