Created
November 22, 2023 17:35
-
-
Save mkrkru/45e44bcc4a897e79052965165e63e3b8 to your computer and use it in GitHub Desktop.
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
| // ======== объявление переменных ======== | |
| let a = 1; // изменяемая | |
| a = 2; | |
| console.log(a); // 2 | |
| const b = "1"; | |
| b = "2"; // Error... | |
| // ======== типы данных ======== | |
| Number, String, Array, Object | |
| // ======== функции ======== | |
| function print(text) { | |
| console.log(text); | |
| } | |
| // ======== условия ======== | |
| if (a == b) { // true, т.к. == не сверяет типы, а === сверяет | |
| console.log('a почти равно b...'); | |
| } else if (a === b) { | |
| console.log('а жоска равно b.'); | |
| } else { | |
| console.log('нихера не равно'); | |
| } |
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
| // ======== про React.js ======== | |
| // гайд пишется... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment