DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
block statement Javascript   Share / Like

Javascript block statements are the curly braces ( { } ) you see everywhere. It is used to establish code that is to be compartmentalized into a specific function or statement. Many times the lines of code inside of a block statement will be indented to represent that they are part of that block statement. Below are some examples showing the curly braces establishing blocks of compartmentalized code.

Javascript CODE EXAMPLE
if (3 < 5) {

    // code for this block statement goes in here

}

for (var i = 0; i < 10; i++) {

    // code for this block statement goes in here

}

function myFunction () {

    // code for this block statement goes in here

}
</script>

 

TIP: You may come across code that processes just fine without the block statements in place(no curly brace nesting). This is because Javascript will execute all lines of code as one statement until it hits a semicolon( ; ), which is the statement break symbol in Javascript and many other languages.

Javascript CODE EXAMPLE
if(3 < 5)
document.write("EXPRESSION RETURNS TRUE")
else
document.write("EXPRESSION RETURNS FALSE");

 

Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5