Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to use logical OR (||) operator in Node.js

4 Answers

0 votes
const a = 5;
const b = -3;
  
console.log(a > 0 || b > 0);
   
   
     
     
/*
run:
     
true
     
*/

 



answered Dec 15, 2021 by avibootz
0 votes
console.log(true || true);   // true
console.log(false || true);  // true
console.log(true || false);  // true
console.log(false || false); // false
   

  
    
    
/*
run:
    
true
true
true
false

*/

 



answered Dec 15, 2021 by avibootz
0 votes
console.log(true || false && false);
 
console.log((true || false) && false);
   
   
     
     
/*
run:
     
true
false
     
*/

 



answered Dec 15, 2021 by avibootz
0 votes
console.log(true  || true); // true
console.log(false || true); // true
console.log(true  || false); // true
console.log(false || (2 == 8)); // false
console.log('c++' || 'nodejs'); // c++
console.log(false || 'nodejs'); // nodejs
console.log('nodejs' || false); // nodejs
console.log('' || false); // false
console.log(false || ''); // 
 
   
     
     
/*
run:
     
true
true
true
false
c++
nodejs
nodejs
false

     
*/

 



answered Dec 15, 2021 by avibootz

Related questions

2 answers 183 views
1 answer 126 views
2 answers 161 views
1 answer 142 views
1 answer 228 views
...