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

时间:2016-11-13 18:40:26

标签: javascript

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

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);
}

1 个答案:

答案 0 :(得分:3)

你真的打过电话吗?

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语句,不需要检查是否相等然后反转。

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