JavaScript – Switch Statement
Previously we discussed if-statement under Conditional Statements. Now, you could have several if-else-if statements. But this is not always the best solution. Hence, there is …
Previously we discussed if-statement under Conditional Statements. Now, you could have several if-else-if statements. But this is not always the best solution. Hence, there is …
You probably have heard of if-else-if statement. This is an example of conditional statement. You use conditional statement to make your program perform different actions …
In the Lesson 4, we discussed JavaScript Variables. In this lesson, we will examine Operators. Is there a relationship between the two? Yes. Operators work …
In this chapter we would cover Data Types and Variables. We would cover the following: JavaScript Data Types Variables in JavaScript Variable Scope Variable Names …
In Tutorial 2, we created a html file and placed the script in the <body> </body section of the html file. But in this lesson, …
As you know, JavaScript programs areĀ placed inside a web page. You place the code inside <script> </script> tag. The <script></script> tag can be placed …
This is the first in the JavaScript Tutorial series for 2019. I would try to focus on the practicals as much as possible. In this …