White
Space
JavaScript ignores extra spaces. You can add
white space to your script to make it more readable. The following lines are
equivalent:
var person="Raj";
var person = "Raj";//here extra space is ignored automatically
var person = "Raj";//here extra space is ignored automatically
No comments:
Post a Comment