
JavaScript 不全等于比较运算符!==
// Setup
function myTest(val) {
// Only Change Code Below this Line
if (val!==17) {
// Only Change Code Above this Line
return "Not Equal";
}
return "Equal";
}
// Change this value to test
myTest(10);
// Setup
function myTest(val) {
// Only Change Code Below this Line
if (val!==17) {
// Only Change Code Above this Line
return "Not Equal";
}
return "Equal";
}
// Change this value to test
myTest(10);
关闭