Difference Between Logical OR and AND Operator in Javascript

In this very small tutorial, you will learn about very basic difference between logical OR and Operator.
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
let a = 0;
let b = {};
let c = 'World';
let result = a || b || c;
console.log(result);
let a = 0; let b = {}; let c = 'World'; let result = a || b || c; console.log(result);
let a = 0;
let b = {};
let c = 'World';

let result = a || b || c;

console.log(result);

 

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <script src="script.js"></script> </body> </html>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
    <script src="script.js"></script>
</body>
</html>