gpt4 book ai didi

javascript - 更正 if 语句

转载 作者:行者123 更新时间:2023-12-02 23:39:40 26 4
gpt4 key购买 nike

需要在运算符中比较文本中是否包含值“100”,答案应该是god = 10

function myFunctiontest566() {
var god = 16;
var test = "test 100 pups"
if(test == "*100") {var god = 10;}
}

最佳答案

你可以采取String#endsWith以及支票的值 100

function myFunctiontest566() {
var god = 16,
test = "test 100";

if (test.endsWith("100")) {
god = 10;
}
console.log(god);
}

myFunctiontest566();

关于javascript - 更正 if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56136335/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com