Get latest news and Web Designing tutoria

Wednesday, 3 June 2015

Javascript Comparison Operators

They have used the double equal sign (== ). But there are other operators you can use besides the double equal sign. These are known as comparison operators. Here are some more of them. Remember, all these evaluate to either true or false.
!=    Is not equal to
>    Greater Than
<    Less Than
>=    Greater Than or equal to
<=    Less Than or equal to

===    Is exactly like and is of the same variable type as
To try then out, change the code between your two Javascript tags to this (or create a new one, if you prefer):
<SCRIPT LANGUAGE = "Javascript">
var over_eighteen = true;
if (over_eighteen != true) {
document.write("You're too young - go away!");
}
else {
document.write("You've passed the age test!");
}
</SCRIPT>
So this script places a value of true in a variable called over_eighteen. We trying to see what's in this variable with the help of an if … else statement. In between the round brackets of IF we have this:
over_eighteen != true
This reads "If over_eighteen does not equal true". So we want something to happen if our variable does not contain what we're looking for. Except, it does contain a value of true. So Javascript will skip this part and jump to the else part. The else part writes the text "You've passed the age test!" to the browser.
Save your work and test it out. Now change var over_eighteen = true to var over_eighteen = false. Save and rerun the script in your browser. You should see the message "You're too young - go away!".
Now try this script:
<SCRIPT LANGUAGE = "Javascript">
var available_width = window.innerWidth;
if ( available_width > 800 ) {
document.write("Show large image");
}
else {
document.write("Show small image");
}
</SCRIPT>
The first line gets the Inner Width available to the browser. We want to check what this is. Our IF statement uses the Greater Than operator ( > ) to check if the value in the available_width variable is more than 800 pixels. (If we wanted more precision we could have used the >= operator, which means Greater Than or Equal To.) If the condition evaluates to true (it is more than 800) then we'll show a larger image. However, if the condition evaluates to false then we'll show the smaller image.The final operator on the list is this one ===. So it's three equal signs, this time. The three equal signs are called the identity operator. This is used when you want to check a variable for equality and that it's of the same variable type. For example, take the script below:
var identity = 17;
if (identity === 17) {
document.write("variable is the number 17");
}
else if (identity == 17) {
document.write("variable is the text 17");
}
If you run the script, the first IF statement will evaluate to true, meaning that the variable does indeed hold a value of 17 and that its variable is the number type. However, change the first line to this:
var identity = "17";
We've now surrounded the number 17 with double quotes, turning it into text. When the code is run again, the else if part of the statement now evaluates to true, while the first part evaluates to false.
So you get more precision with the treble equal sign than you do with the double. Try not to worry too much about it, though: we'll use the double equal sign unless we really need the treble one.

The Ternary Operators

If you want a quick IF statement then you can use something called a ternary expression. This uses a question mark ( ? ) and a colon ( : ). The syntax is this:
var result = condition_to_test ? "TRUE" : "FALSE";
Here's a coding example:
var over_eighteen = true;
var result = over_eighteen ? "Truth" : "False";
document.write(result);
First we set a value for the variable over_eighteen. This condition is tested before the question mark. If it's true, the text before the colon gets placed in the result variable. If it's false the text after the colon will be placed in the variable.

Related Posts:

  • Dropdown Lists The code to check the dropdown list is more or less the same as for radio buttons. Here it is: The only difference is in the IF Statement. Between the round brackets we have the following: document.frmOne.hear[i].select… Read More
  • Using getElementById in Javascript The document method getElementById is used to manipulate particular HTML elements on your page. As its name suggests, though, the HTML element needs an ID attached to it. As an example, take a look at this segment … Read More
  • Checkboxes The final function we need is for the checkbox. You can have 1 or more checkboxes on a form. We only have 1, so checking it is fairly straightforward. If you have more than checkbox, though, you do the testing in exactly the… Read More
  • Radio Buttons Checking radio buttons on a form is a little trickier. You have to loop through each button, testing for a value of checked, which means it was selected. Only one radio button in a group can be selected, so if you find… Read More
  • Javascript Form Validation - the email function We'll start with the function that checks the email address text box. We'll only check if the text box has had anything typed into it. Checking for a correct email address is notoriously difficult, so we're just trying to k… Read More

0 comments:

Post a Comment