Blog Search
Latest Posts
Firefox 3 Web Browser Launched
New Educational Media Website Launch
Trevor Laurency Fitness Website Launch
Recent Recommended Links - April 2008
Web Apps on Your Desktop with Mozilla Prism
Recent Recommended Links - March 2008
Ubuntu Linux - Persistent sudo root
Controlling PHP Register Globals Using .htaccess File
Javascript Essentials - Date Pickers (Calendars)
Blog Archive
Browse by Subject
AJAX
Apache
CMS
CSS
HTML
Java
JavaScript
Links
Linux
Mac
MySQL
Pascal
PHP
postgreSQL
RSS
Ruby
SEO
Web Dev News
Windows
XML
Other Resources
Computer Science Student Articles
Javascript: Variations of the IF Statement
Published: 20th Sep 2006
<script type="text/javascript" language="javascript">
var var1 = 10;
var var2 = 5;
var match = null;
if (var1 == var2) {
match = 'the variables are the same';
} else {
match = 'the variables are different';
}
</script>There is another way we can write IF statements. Take a look at the code below:
<script type="text/javascript" language="javascript">
var var1 = 10;
var var2 = 5;
var match = null;var1 == var2 ? match = 'same' : match =
'different';
</script>
The fourth line of JavaScript within the tags above represent a whole IF... THEN... ELSE... statement. In fact it is the same statement that is written in the first section of code in this article.It allows for much more concise code but sacrifices a certain amount of readability. Could certainly come in useful though!
Related Links
Related Articles / Posts
Javascript Essentials - Date Pickers (Calendars) (03/03/2008)
Javascript: Variations of the IF Statement (20/09/2006)
Javascript / CSS: Flashing Text - How to do it - Why NOT to do it (16/09/2006)
Code Editors (Syntax Highlighting) - Aptana, Crimson Editor, PHP Designer (14/08/2006)
Web Dev News: Pro Ajax and PHP - Building Highly Interactive Applications (Book) (18/07/2006)


