Vishnu V Nair
Vishnu V Nair's Blog

Vishnu V Nair's Blog

Follow

Short Circuiting in JavaScript

Dec 25, 20225 min read

Introduction Consider the following code snippet: // if-else statement if (isUserLoggedIn) { return privateData; } else { return false; } The...