JavaScript if…else Conditional Statement

In programming, conditional statements are used for making decisions based on different conditions. Given certain conditions, different courses of action are taken based on those determinants. A programmer defines those conditions and if their boolean value evaluates to True, then some pre-defined action is taken, else, the code defined for the false value is computed. […]

JavaScript if…else Conditional Statement Read More »

JavaScript Strict Mode: What it Does and Doesn’t Allow

The strict mode in JavaScript helps us to write secure code by detecting accidental errors and bugs in the code. It produced the visible mistakes hidden in JavaScript, by default JavaScript just failed silently without showing the errors. In this tutorial, you will learn about the strict mode in JavaSript, the process of activating strict mode

JavaScript Strict Mode: What it Does and Doesn’t Allow Read More »