Replace != with !==
commonUtil.js:L22
Sonar Link : https://sonar.onap.org/component_issues/index?id=org.onap.aai.esr-gui%3Aaai-esr-gui#resolved=false|severities=MAJOR|assignees=PrasadNaidu
Location : src/main/webapp/extsys/ems/js/commonUtil.js
Change-Id: Ia3a84e08e88b04ee0cea325308f5236d942f8d5b
Issue-ID: AAI-729
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
return;
}
for (var i = 0, n = 0; i < aryInstance.length; i++) {
- if (aryInstance[i] != aryInstance[dx]) {
+ if (aryInstance[i] !== aryInstance[dx]) {
aryInstance[n++] = aryInstance[i];
}
}