This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// -----Variables definition----- // | |
/* In Javascript, Variables are empty containers used | |
for storing data values. All variables must be identified using unique names: | |
Ex. uniName | |
Variables are bound to the scope in which they declared, | |
and variable names can contain letters, digits, underscores, | |
and dollar signs; however, they must begin with a letter, |
NewerOlder