Skip to content

Files

Latest commit

 

History

History
14 lines (10 loc) · 1.52 KB

File metadata and controls

14 lines (10 loc) · 1.52 KB

Logical Operators easy #javascript #logical operators

by Pawan Kumar @jsartisan

Take the Challenge

What will the following code snippet log to the console?

let a = 1;
let b = "";
let c = 0;

console.log(a && b && c);
console.log(a || b || c);

Back Share your Solutions Check out Solutions