操作员有必要比较文本中答案中是否包含值“ 100”应为God = 10
function myFunctiontest566() {
var god = 16;
var test = "test 100 pups"
if(test == "*100") {var god = 10;}
}
答案 0 :(得分:1)
您可以使用String#endsWith
和值100
进行支票。
function myFunctiontest566() {
var god = 16,
test = "test 100";
if (test.endsWith("100")) {
god = 10;
}
console.log(god);
}
myFunctiontest566();