开发者

Using function's return value in if statement

开发者 https://www.devze.com 2023-03-21 00:16 出处:网络
Hopefully a quick question here. Can you use a function\'s returned value in a if statement? I.e. function qu开发者_StackOverflow中文版eryThis(request) {

Hopefully a quick question here.

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

function qu开发者_StackOverflow中文版eryThis(request) {

  return false;

}

if(queryThis('foo') != false) { doThat(); }

Very simple and obvious I'm sure, but I'm running into a number of problems with syntax errors and I can't identify the problem.


You can simply use

if(queryThis('foo')) { doThat(); }

function queryThis(parameter) {
    // some code
    return true;
}


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?


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


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号