Web Design, Development & Marketing
acuras services: Website Design & Development E-commerce Solutions Content Management Systems Online Marketing & Social Media Corporate Branding Social Media Training
Get in touch... Email Us: info@acuras.co.uk
acuras blog:7 Quick Tips to Keep Your SEO On Track in 2012 7 Social Media & SEO Tactics Businesses Will Adopt in 2012 latest posts:We are now trading as a Limited company Recent Work: Digital Marketing Material and Website Re-Designs Affordable Web Hosting and Domain Name Registration New Acuras Logo Coming Soon... Barclaycard ePDQ CPI Integrations HSBC XML API / CPI E-commerce Integrations Photoshop to Valid XHTML/CSS Coding Service Recommended Open Source Invoicing System Reasons Businesses should Embrace the Web blog archive:
Web Development ArticlesJavascript: Variations of the IF StatementPublished: 20th Sep 2006 There are a couple of ways you can use IF statements in JavaScript. One is a more traditional way and the other can be viewed as a shorthand method. The traditional IF statement in JavaScript is as follows:
<script type="text/javascript" language="javascript">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;var1 == var2 ? match = 'same' : match =
'different';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 LinksRelated Articles / PostsJavascript 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) |
||