gpt4 book ai didi

javascript - 如何比较两个变量并设置第三个变量的值

转载 作者:行者123 更新时间:2023-11-28 18:17:23 26 4
gpt4 key购买 nike

我有这个功能,但我似乎无法开始工作。我希望它比较两个变量并设置第三个变量的值。

var win_lose;
var this_roll = $('#past')[0].childNodes[9].textContent;
var last_roll = $('#past')[0].childNodes[9].textContent;

function compare() {

if (!(this_roll == last_roll)) {
win_lose = 'lose';
} else {
win_lose = 'win';
}
console.log(win_lose);
}

最佳答案

你真的调用了这个函数吗?

var this_roll = $('#past')[0].childNodes[9].textContent;
var last_roll = $('#past')[0].childNodes[9].textContent;

function compare(this_roll, last_roll) {
var win_lose; //added new variable here
if (this_roll != last_roll) {
win_lose = 'lose';
} else {
win_lose = 'win';
}
return win_lose;
}

var res = compare(this_roll, last_roll);
console.log(res);

我还重写了你的 if 语句,不需要检查相等性然后反转。

我也会将参数传递给函数。

关于javascript - 如何比较两个变量并设置第三个变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40577416/

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