if语句中的return throws错误

时间:2016-06-18 18:29:56

标签: javascript

我有一个if语句,其中包含return s,在执行时会抛出错误。

var booleanStatement = true;

if ( booleanStatement ){
    return true;
} else {
    return false;
}

这应该返回true,但它会抛出错误。我怎样才能让这句话回归真实?

1 个答案:

答案 0 :(得分:1)

您需要一个函数来使用语句return

  

return 语句结束函数执行并指定要返回给函数调用者的值。



var array = [0, 1, 2, , 4, 5];

function x() {
    if (array[3] === 3) {
        return true;
    } else {
        return false;
    }
}

console.log(x());