Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 26, 2017 12:00 pm

Learn Computer Science With JavaScript: Part 2, Conditionals

Introduction

In part one of this series, our programs were only written as a sequence of statements. This structure severely limits what we can do. Say you are designing a program that needs to log in users. You may want to direct a user to one page if they give the correct credentials and send them to another if they aren’t registered. 

To do this, you need to use a decision structure like an if statement. This will perform an action only under certain conditions. If the condition does not exist, the action is not performed. In this tutorial, you'll learn all about conditionals.

Contents


  • If statements

  • Relational operators

  • If-else statement

  • Switch statements

  • Logical operators

  • Review

  • Resources

If Statements

A single if statement will perform an action if a condition is true. If the condition is false, the program will execute the next statement that is outside of the if block. In the following example, if the expression isRaining() is true, then we will putOnCoat() and putOnRainboots() then goOutside(). If isRaining() is false, the program will only execute goOutside().

This is the general form for writing an if statement:

The condition is an expression that has the value true or false. An expression that is true or false is called a boolean expression. Boolean expressions are made with relational operators. 

Relational Operators

A relational operator compares two values and determines if the relationship between them is true or false. They can be used to create boolean expressions for our conditions. Here is a list of relational operators with examples:


























































OperatorMeaningExampleMeaning
==equalityx == yIs x equal to y?
===

strict equality x === yIs x equal to y in value and type?

!=

inequality

x != y

Is x not equal to y?

!==

strict inequality

x !== y

Is x not equal to y in value and type?

>greater than

x > y

Is x greater than y?

<less than

x < y

Is x less than y?

>=greater than or equal

x >= y

Is x greater than or equal to y?

<=less than or equal

x <= y

Is x less than or equal to y?

It is important to note the difference between the equality operator == and the strict equality operator ===. For example, the expression 2 == "2" is true. But the expression 2 === "2" is false.  In the second example, the two values are different data types, and that is why the expression is false. It is best practice to use === or !==.

The following example will display the message, "You get an A".

Task

What is the value of the expression 5 > 3? 6 != "6"?

If-Else Statements

An if-else statement will execute one block of statements if its condition is true, or another block if its condition is false. The following example will display the message “valid username” because the condition is true.

This is the general form of an if-else statement:

Task

 What will be the output of this program:

It is also possible to check for more than one condition. Example:

This is the general form for writing multiple if-else-if statements:

Switch Statements

A switch statement is also used to conditionally execute some part of your program. The following example implements our roman numeral converter as a switch statement:

This is the general form of a switch statement:

Each case represents a value our expression can take. Only the block of code for the case that is true will execute. We include a break statement at the end of the code block so that the program exits the switch statement and doesn’t execute any other cases. The default case executes when none of the other cases are true.    

Task 

Write a switch statement that displays the day of the week given a number. For example, 1 = Sunday, 2 = Monday, etc.

Logical Operators

The and operator && and the or operator || allow us to connect two boolean expressions. The not operator ! negates an expression. To illustrate how logical operators work, we will look at a truth table. A truth table contains all the combinations of values used with the operators. I use P to represent the left-hand expression and Q for the right-hand expression.  

&& truth table:





























PQP && Q
truetruetrue

true

false

false

false

true

false
false

falsefalse

We read the table going across each row. The first row tells us that when P is true and Q is true, P && Q is true. The following example tests whether 82 is between 60 and 100 inclusive.


  • let x = 82;

  • x >= 60 && x <= 100

  • P: x >= 60 is true

  • Q: x <= 100 is true

  • P && Q: true && true

|| truth table:





























PQP || Q
true

true

true

true

false

true

false

falsetrue

false

false

false

This example tests if 82 is outside the range 60–100:


  • let x = 82;

  • x < 60 || x > 100

  • P: x < 60 is false

  • Q: x > 100 is false

  • P || Q: false || false

! truth table:
















P!P
true

false

false

true

Example:


  • x = 82

  • P: x > 0 is true

  • !P: false

Task

Fill in the table with the missing values.












































PQ!P!Q!P && !Q

!P || !Q

true

true





true

false


false

true


false

false



Something useful to know about logical operators is that if the expression on the left side of the && operator is false, the expression on the right will not be checked because the entire statement is false. And if the expression on the left-hand side of an || operator is true, the expression on the right will not be checked because the entire statement is true.

Review

A program can execute blocks of code conditionally using boolean expressions. A boolean expression is written using relational operators. Logical operators allow us to combine boolean expressions. 

A single if statement gives the program one alternative path to take if a condition is met. If-else statements provide a second course of action if the condition is false. And if-else-if statements allow us to test multiple conditions. Switch statements can be used as an alternative to an if-else-if statement when you have multiple conditions to test. 

Next, in part 3, we will discuss loops.

Resources


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code