[JS] 13. Closure
·
JS/JavaScript
13_Closure.html
[JS] 12. scope
·
JS/JavaScript
12_Scope.html
[JS] 11. This
·
JS/JavaScript
11_This.html
[JS] 10. TypeOf
·
JS/JavaScript
10_TypeOf.html
[JS] 09. Function
·
JS/JavaScript
09_Function.html
[JS] 08. Object
·
JS/JavaScript
08_Object.html
[JS] 07. Array
·
JS/JavaScript
07_Array.html
[JS] 06. Loop
·
JS/JavaScript
06_Loop.html
[JS] 05. Conditional_Code
·
JS/JavaScript
05_Conditional_Code.html
[JS] 04. Operator
·
JS/JavaScript
04_Operator.html
[JS] 03. Type
·
JS/JavaScript
03_Type.html
[JS] 02. SyntaxBasic
·
JS/JavaScript
02_SyntaxBasic.js /******* Comments *******/ // Single-and multi-line comments. // Thie is an example of a single-line comment. /* * this is an example * of a * comment. */ /************/ /******* Whitespace *******/ //Whitespace is insignificant. Whitespace is also ignored in JavaScript. var hello = "Hello"; var world = "World"; //Semantic whitespace promotes readability. //Readable code is goo..