| javascript basics€¦ · | javascript basics facebook.com/wikitechy twitter.com/wikitechy ©...

13
| JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …. Else Statement Functions The JavaScript if-else statement is used to execute the code whether condition is true or false. There are three forms of if statement in JavaScript. If Statement If else statement If else If statement Explanation If statement: The if statement is the fundamental control statement that allows JavaScript to make decisions and execute statements conditionally. If else statement: The 'if...else' statement is the next form of control statement that allows JavaScript to execute statements in a more controlled way. If...else If... statement: The if...else if... statement is an advanced form of if…else that allows JavaScript to make a correct decision out of several conditions.

Upload: others

Post on 07-Aug-2020

13 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

JavaScript If …. Else Statement

Functions

The JavaScript if-else statement is used to execute the code whether

condition is true or false. There are three forms of if statement in JavaScript.

If Statement

If else statement

If else If statement

Explanation

If statement:

The if statement is the fundamental control statement that allows

JavaScript to make decisions and execute statements conditionally.

If else statement:

The 'if...else' statement is the next form of control statement that allows

JavaScript to execute statements in a more controlled way.

If...else If... statement:

The if...else if... statement is an advanced form of if…else that allows

JavaScript to make a correct decision out of several conditions.

Page 2: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Tag

if statement:

if(Condition) {

Statement….; //Condition is true, Statement is executed

}

If else statement:

if(Condition) {

Statement….; //Condition is true, Statement is executed

}

else {

Statement…;//Condition is false, else statement is executed

}

if...else if... statement:

if (condition 1) {

statement…// Condition 1 is true, Statement is executed

}

Else if (condition 2) {

Statement…// Condition 2 is true, Statement is executed

}

Page 3: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Else if (condition 3) {

Statement…// Condition 3 is true, Statement is executed

}

Else {

Statement..//No condition is true, this else statement is

executed

}

Sample Code (if statement)

if statement:

<html>

<body>

<script type="text/javascript">

var age=18;

if( age >15){

document.write("<b>Qualifies for Vote

in WikiTechy </b>");}

</script>

</body>

</html>

Page 4: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

If else statement:

<html>

<body>

<script type="text/javascript">

var age=15;

if( age >18){

document.write("<b>Qualifies for Vote in WikiTechy </b>");

}

Else {

document.write("<b>Not Qualifies for Vote in WikiTechy </b>");

}

</script>

</body>

</html>

Page 5: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Code Explanation:

if...else if... statement:

<html>

<body>

<script type="text/javascript">

var book = "Datastructure";

if( book == "OOPS" ){

document.write("<b>OOPS Book</b>");

}

else if( book == "JAVA" ){

document.write("<b>JAVA Book</b>");

}

else if( book == "Datastructure" ){

document.write("<b>Datastructure Book</b>");

}

else{

document.write("<b>Unknown Book</b>");

} </script>

</body>

</html>

Page 6: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Code Explanation

Age is Variable which is pass to if condition

document. Write which used to print the html data

Page 7: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Age is Variable which is pass to if condition

document. Write which used to print the html data

document. Write in else condition is true to print the html data

Page 8: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Book is Variable which is pass to if condition

document. Write which used to print the html data

Sample Output (if-statement)

Page 9: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Sample Output (If Else):

Page 10: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Sample Output (if Else if):

Page 11: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Output:

Page 12: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.

Page 13: | JAVASCRIPT BASICS€¦ · | JAVASCRIPT BASICS Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved. JavaScript If …

| JAVASCRIPT BASICS

Facebook.com/wikitechy twitter.com/wikitechy © Copyright 2016. All Rights Reserved.