提问人:user19102374 提问时间:11/22/2022 更新时间:11/22/2022 访问量:39
如果 4 件事是真的,那就做 ____ .很难使用 If 语句并检查 4 个值是否为真来执行代码
If 4 things are true then do ____ . Having a hard time with the If statement and it checking if 4 values are true to execute the code
问:
if (test1 === 'hi' && test2 === 'bye' && test3 = 'joe' && test4 === 'sam') {
console.log("all 4 statements are true!!);
};
得到一个 R 值错误,我假设这是语法。有人可以帮我这样做的正确格式/方法是什么吗?
答:
1赞
WestMountain
11/22/2022
#1
您缺少双引号 我喜欢做的是安装更漂亮的代码,当您无法格式化代码时,这意味着有些语法不正确
1赞
Paulo
11/22/2022
#2
if (test1 === 'hi' && test2 === 'bye' && test3 === 'joe' && test4 === 'sam') {
console.log("all 4 statements are true!!");
}
评论
1赞
Tom Price
11/22/2022
test3 = 'joe' 是一个作业!
评论