File "ComparisonOperatorUsageUnitTest.js"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.js
File size: 1.11 KB
MIME-type: text/plain
Charset: utf-8

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";