gpt4 book ai didi

javascript - 未捕获的语法错误 : missing ) after argument list i know its super common but i cant see where i messed up

转载 作者:行者123 更新时间:2023-11-30 19:03:50 26 4
gpt4 key购买 nike

我已经为此工作了一段时间,只是找不到开发工具告诉我它在第 23 行的问题

这是代码

1   <script>
2
3 var comp1 = Math.floor((Math.random()*6) + 1);
4 var comp2 = Math.floor((Math.random()*6) + 1);
5 var you1 = Math.floor((Math.random()*6) + 1);
6 var you2 = Math.floor((Math.random()*6) + 1);
7 var counter = 1;
8 var youPoints = 0;
9 var mePoints = 0;
10
11
12 while(counter < 6)
13 {
14 alert("Let's shake some dice!");
15 alert("your turn to roll \n\n you shook a " + you1 + " and a " + you2 + ", so you have " + (you1 + you2));
16
17 alert("my turn to roll \n\n I shook a " + comp1 + " and a " + comp2 + ", so I have " + (comp1 + comp2));
18
19 var you = you1 + you2;
20 var me = comp1 + comp2;
21 if(you > me)
22 {
23 alert("you win " + you " to " + me);
24 youPoints++
25 }
26
27
28 counter++
29 }
30
31
32 </script>

我正在使用 sublime Text,所以我可以看到事物之间的良好分离,这一切对我来说都很好,但它现在才开始工作,希望你们中的一个能帮我解决这个问题

最佳答案

您正在使用一个变量,但在日志语句中它后面没有添加加号

alert("you win " + you + " to " + me);

这就是为什么它期望在“你”之后有一个右括号,但却看到了一个字符串。

关于javascript - 未捕获的语法错误 : missing ) after argument list i know its super common but i cant see where i messed up,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59203113/

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