opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Squiz
/
Tests
/
Operators
➕ New
📤 Upload
✎ Editing:
ComparisonOperatorUsageUnitTest.js
← Back
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
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel