JavaScript Guidelines |
|||||||
53 views
JavaScript is Case SensitiveSome other important things to know when scripting with JavaScript. A function named “myfunction” is not the same as “myFunction” and a variable named “myVar” is not the same as “myvar”. JavaScript is case sensitive - therefore watch your capitalization closely when you create or call variables, objects and functions. White SpaceJavaScript ignores extra spaces. You can add white space to your script to make it more readable. The following lines are equivalent:
Break up a Code LineYou can break up a code line within a text string with a backslash. The example below will be displayed properly:
However, you cannot break up a code line like this:
|
| « Lesoon 18. JavaScript Special Characters | Contents: Javascript for Beginners » |
| Posted on Wednesday, January 28th, 2009 at 5:28 pm under Javascript For Beginners | RSS 2.0 Feed | |
January 28th, 2009 at 6:08 pm
[...] JavaScript Guidelines « JavaScript Guidelines Posted on Wednesday, January 28th, 2009 at 6:07 pm under Javascript For Beginners | RSS 2.0 Feed Post Comment [...]