
JavaScript 不等于比较运算符!=
// Setup
function myTest(val) {
if (val!=99) { // Change this line
return "Not Equal";
}
return "Equal";
}
// Change this value to test
myTest(10);
// Setup
function myTest(val) {
if (val!=99) { // Change this line
return "Not Equal";
}
return "Equal";
}
// Change this value to test
myTest(10);
关闭