| Javascript basic2 |
| 1 | : |
| 2 | ; |
| 3 | var |
| 4 | function |
| 5 | new |
| 6 | Array() |
| 7 | Object() |
| 8 | true |
| 9 | false |
| 10 | 'string' |
| 11 | 'number' |
| 12 | 'boolean' |
| 13 | 'null' |
| 14 | 'undefined' |
| 15 | 'object' |
| 16 | alert('Hello World!'); |
| 17 | = |
| 18 | += |
| 19 | ++ |
| 20 | -= |
| 21 | *= |
| 22 | === |
| 23 | !== |
| 24 | () |
| 25 | ()() |
| 26 | {} |
| 27 | if (){} |
| 28 | else |
| 29 | switch (a){} |
| 30 | for (){} |
| 31 | while (){} |
| 32 | do{}while() |
| 33 | case 'yes': |
| 34 | break; |
| 35 | continue; |
| 36 | typeof |
| 37 | indexOf() |
| 38 | lastIndexOf() |
| 39 | querySelector() |
| 40 | querySelectorAll() |
| 41 | document |
| 42 | getElementById() |
| 43 | getElementsByClassName() |
| 44 | getElementsByClassName() |
| 45 | getElementsByName() |
Комментарии