javascript check if function is true in a if statement code example
Example 1: check if javascript function is true
function example(){
return true;
}
if(example()){
console.log('hello');
}else{
console.log('bye');
}
// result: 'hello'
Example 2: single if statement js true false
condition ? exprIfTrue : exprIfFalse