├── .DS_Store ├── .gitignore ├── break.html ├── closure.html ├── console.html ├── continue.html ├── debugger.html ├── destructuring.html ├── do-while-loop.html ├── falsy-truthy.html ├── for-in.html ├── for-loop.html ├── for-of.html ├── function-anonymous.html ├── function-arrow.html ├── function-dalam-function.html ├── function-default-parameter.html ├── function-generator.html ├── function-optional-parameter.html ├── function-parameter.html ├── function-recursive.html ├── function-rest-parameter.html ├── function-return-value.html ├── function-sebagai-value.html ├── function.html ├── getter-dan-setter.html ├── hello-world-file.html ├── hello-world.html ├── if-expression.html ├── kata-kunci-this.html ├── komentar.html ├── konversi-string-dan-number.html ├── label.html ├── masalah-variable-var.html ├── null.html ├── object-method-arrow-function.html ├── object-method.html ├── operator-aritmatika.html ├── operator-augmented-assigment.html ├── operator-in.html ├── operator-logika-di-non-boolean.html ├── operator-logika.html ├── operator-nullish-coalescing.html ├── operator-perbandingan.html ├── operator-ternary.html ├── operator-typeof.html ├── operator-unary.html ├── optional-chaining.html ├── popup-alert.html ├── popup-confirm.html ├── popup-prompt.html ├── scope.html ├── scripts └── hello-world.js ├── strict-mode.html ├── string-template.html ├── switch-statement.html ├── tipe-data-array.html ├── tipe-data-boolean.html ├── tipe-data-number.html ├── tipe-data-object.html ├── tipe-data-string.html ├── undefined.html ├── variable-const.html ├── variable-let.html ├── variable.html ├── while-loop.html └── with-statement.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-dasar/015b417c2e9e2e44af70c04cc28d874889fabc02/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /break.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Break 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /closure.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Closure 6 | 7 | 8 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /console.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Console 6 | 7 | 8 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /continue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Continue 6 | 7 | 8 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /debugger.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debugger 6 | 7 | 8 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /destructuring.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Destructuring 6 | 7 | 8 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /do-while-loop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Do While Loop 6 | 7 | 8 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /falsy-truthy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Falsy dan Truthy 6 | 7 | 8 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /for-in.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | For In 6 | 7 | 8 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /for-loop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | For Loop 6 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /for-of.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | For Of 6 | 7 | 8 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /function-anonymous.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Anonymous 6 | 7 | 8 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /function-arrow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Arrow 6 | 7 | 8 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /function-dalam-function.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function dalam Function 6 | 7 | 8 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /function-default-parameter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Default Parameter 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /function-generator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Generator 6 | 7 | 8 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /function-optional-parameter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Optional Parameter 6 | 7 | 8 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /function-parameter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Parameter 6 | 7 | 8 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /function-recursive.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Recursive 6 | 7 | 8 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /function-rest-parameter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Rest Parameter 6 | 7 | 8 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /function-return-value.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function Return Value 6 | 7 | 8 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /function-sebagai-value.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function sebagai Value 6 | 7 | 8 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /function.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Function 6 | 7 | 8 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /getter-dan-setter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Getter dan SEtter 6 | 7 | 8 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /hello-world-file.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello World from File 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /hello-world.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello World 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /if-expression.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | If Expression 6 | 7 | 8 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /kata-kunci-this.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Kata Kunci this 6 | 7 | 8 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /komentar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Komentar 6 | 7 | 8 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /konversi-string-dan-number.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Konversi String dan Number 6 | 7 | 8 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /label.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Label 6 | 7 | 8 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /masalah-variable-var.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Masalah Variable var 6 | 7 | 8 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /null.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Null 6 | 7 | 8 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /object-method-arrow-function.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Object Method Arrow Function 6 | 7 | 8 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /object-method.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Object Method 6 | 7 | 8 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /operator-aritmatika.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Aritmatika 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /operator-augmented-assigment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Augmented Assigment 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /operator-in.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator In 6 | 7 | 8 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /operator-logika-di-non-boolean.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Logika di Non Boolean 6 | 7 | 8 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /operator-logika.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Logika 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /operator-nullish-coalescing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Nullish Coalescing 6 | 7 | 8 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /operator-perbandingan.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Perbandingan 6 | 7 | 8 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /operator-ternary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Ternary 6 | 7 | 8 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /operator-typeof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator typeof 6 | 7 | 8 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /operator-unary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Operator Unary 6 | 7 | 8 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /optional-chaining.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Optional Chaining 6 | 7 | 8 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /popup-alert.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Popup Alert 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /popup-confirm.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Popup Confirm 6 | 7 | 8 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /popup-prompt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Popup Prompt 6 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /scope.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Scope 6 | 7 | 8 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /scripts/hello-world.js: -------------------------------------------------------------------------------- 1 | 2 | document.writeln("Hello World"); 3 | -------------------------------------------------------------------------------- /strict-mode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Strict Mode 6 | 7 | 8 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /string-template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | String Template 6 | 7 | 8 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /switch-statement.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Switch Statement 6 | 7 | 8 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /tipe-data-array.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tipe Data Array 6 | 7 | 8 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /tipe-data-boolean.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tipe Data Boolean 6 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tipe-data-number.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tipe Data Number 6 | 7 | 8 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /tipe-data-object.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tipe Data Object 6 | 7 | 8 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /tipe-data-string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tipe Data String 6 | 7 | 8 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /undefined.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Undefined 6 | 7 | 8 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /variable-const.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Variable Const 6 | 7 | 8 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /variable-let.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Variable Let 6 | 7 | 8 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /variable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Variable 6 | 7 | 8 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /while-loop.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | While Loop 6 | 7 | 8 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /with-statement.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | With Statement 6 | 7 | 8 | 30 | 31 | 32 | --------------------------------------------------------------------------------