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