📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 04:06:53
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Squiz
/
Tests
/
Operators
✏️
Editing: ComparisonOperatorUsageUnitTest.js
if (value === TRUE) { } else if (value === FALSE) { } if (value == TRUE) { } else if (value == FALSE) { } if (value) { } else if (!value) { } if (value.isSomething === TRUE) { } else if (myFunction(value) === FALSE) { } if (value.isSomething == TRUE) { } else if (myFunction(value) == FALSE) { } if (value.isSomething) { } else if (!myFunction(value)) { } if (value === TRUE || other === FALSE) { } if (value == TRUE || other == FALSE) { } if (value || !other) { } if (one === TRUE || two === TRUE || three === FALSE || four === TRUE) { } if (one || two || !three || four) { } while (one == true) { } while (one === true) { } do { } while (one == true); do { } while (one === true); for (one = 10; one != 0; one--) { } for (one = 10; one !== 0; one--) { } for (type in types) { } variable = (variable2 === true) ? variable1 : "foobar"; variable = (variable2 == true) ? variable1 : "foobar"; variable = (variable2 === false) ? variable1 : "foobar"; variable = (variable2 == false) ? variable1 : "foobar"; variable = (variable2 === 0) ? variable1 : "foobar"; variable = (variable2 == 0) ? variable1 : "foobar";
💾 Save Changes
❌ Cancel