The Language of JavaSript

Applications of Parentheses

to set variables/Objects to different values and to create conditions: If (condition) { set(value=2) } }

They also are used to group instrutions or conditions as to indicate the order of operations. If ((value === 2 )||(value === 0)){ }

Or to used to create a new array: var ar=["a","b"];

Applications of Braces

To run a set of loops or commands. If (ediIsCool === True) { set(counter++); }

coundn't think of any other ones sorry.

Applications of Square Brackets.

Square Brackets are often used to retrieve or alter an object, key, or variable.

For (board.edi.isCool[i]; i>101; i++){}

Question?

This is the answer to the above question, it will be about
this long. Hopefully not too much longer/shorter.

Applications of Double Quotes

To Escape a single quote: 'A string that\'s single quoted' "A string that's double quoted"

Applications of Single Quotes

In Words