Go Back   Wiki NewForum | Latest Entertainment News > Career Forum & Tips > Tech Forum & Tutorial > Java Forum & Tutorial


JavaScript Guidelines


Reply
Views: 2533  
Thread Tools Rate Thread
  #1  
Old 05-03-2009, 05:43 PM
welcomewiki welcomewiki is offline
Member
 
Join Date: Dec 2008
Location: India
Posts: 79,789
Default JavaScript Guidelines

Some other important things to know when scripting with JavaScript.
JavaScript is Case Sensitive

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 Space

JavaScript ignores extra spaces. You can add white space to your script to make it more readable. The following lines are equivalent:
name="Hege";
name = "Hege";
Break up a Code Line

You can break up a code line within a text string with a backslash. The example below will be displayed properly:


document.write("Hello \
World!");



However, you cannot break up a code line like this:
document.write \
("Hello World!");

Reply With Quote
Reply

New topics in Java Forum & Tutorial


Thread Tools
Rate This Thread
Rate This Thread:



Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
WikiNewForum)