What is short-circuit evaluation in JavaScript?
30 Aug, 2021Hey folks, to understand what short-circuit evaluation is one must be aware of the logical operators in javascript....
Read MoreHey folks, to understand what short-circuit evaluation is one must be aware of the logical operators in javascript....
Read MoreAs we know, we can assign all sorts of different types to a variable. But javaScript has types. In particular, it provides primitive types and object types.......
Read MoreLike many other programming languages, JavaScript has variables. Variables can be thought of as named containers. You can place data into these containers and then refer to the data simply by naming the container. Before you use a variable in a JavaScript program, you must declare it. There are 3 ways to do this, using var, let or const, and those 3 ways differ in how you can interact with the variable later on. For example:...
Read MoreWhat is React?