Conditional Statements
In this section we are going learn how to use Conditional statements.
The three different kinds that we have are:
if / else statements
a ? b : c
case / switch
With these three different statements we gain a ton of functionality in programming. These statements allow us to test data. Being able to do this is the basis for coding and building programs.
The three different kinds that we have are:
if / else statements
a ? b : c
case / switch
With these three different statements we gain a ton of functionality in programming. These statements allow us to test data. Being able to do this is the basis for coding and building programs.