This product is not supported for your selected Datadog site. ().
Metadata
ID:javascript-code-style/strict-equals
Language: JavaScript
Severity: Notice
Category: Best Practices
Description
In JavaScript, == and != comparisons do type coercion, which can be confusing and may introduce potential errors. Use the type-safe equality operators === and !== instead.