Using function's return value in if statement

前端 未结 5 959
你的背包
你的背包 2021-02-09 05:54

Hopefully a quick question here.

Can you use a function\'s returned value in a if statement? I.e.

function queryThis(request) {

  return false;

}

if(q         


        
相关标签:
5条回答
  • 2021-02-09 05:56

    You can simply use

    if(queryThis('foo')) { doThat(); }
    
    function queryThis(parameter) {
        // some code
        return true;
    }
    
    0 讨论(0)
  • 2021-02-09 06:01

    This should not be a problem. I don't see anything wrong with the syntax either. To make sure you could catch the return value in a variable and see if that solves your problem. That would also make it easier to inspect what came back from the function.

    0 讨论(0)
  • 2021-02-09 06:05

    Yes you can provided it returns a boolean in your example.

    0 讨论(0)
  • 2021-02-09 06:21

    Not only you can use functions in if statements in JavaScript, but in almost all programming languages you can do that. This case is specially bold in JavaScript, as in it, functions are prime citizens. Functions are almost everything in JavaScript. Function is object, function is interface, function is return value of another function, function could be a parameter, function creates closures, etc. Therefore, this is 100% valid.

    You can run this example in Firebug to see that it's working.

    var validator = function (input) {
        return Boolean(input);
    }
    
    if (validator('')) {
        alert('true is returned from function'); 
    }
    if (validator('something')) {
        alert('true is returned from function'); 
    }
    

    Also as a hint, why using comparison operators in if block when we know that the expression is a Boolean expression?

    0 讨论(0)
  • 2021-02-09 06:22

    In sort, yes you can. If you know it is going to return a boolean you can even make it a bit simpler:

    if ( isBar("foo") ) {
      doSomething();
    }
    
    0 讨论(0)
提交回复
热议问题