This file contains 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
### mashgh | |
#### 2 روش دیگر متغیر | |
#### خواندن اسکوپ از روی mdn | |
#### خواندن اسکوپ از روی variable | |
#### حفظ کردن ویژگی های آنان |
This file contains 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
// "use strict"; | |
// Command Linux | |
// ls -> list system | |
// cd -> change directory | |
// mkdir -> directory misazad (folder) | |
// touch -> file misazad | |
// rm -rf [esm file] -> file ra pak mikonad | |
// * -> wild card |
This file contains 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
// // // 1. Simple Types (premetive) string boolean number null undifiend symbol | |
// // // const title: string = "pouriya"; | |
// // // const isActive: boolean = true; | |
// // // const Age: number = 5; | |
// // // const NullValue: null = null; | |
// // // const UndeifiendValue: undefined = undefined; | |
// // // // type zadegi !!!!!! magr dar yek halat |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head></head> | |
<body> | |
<!-- HEADLINE --> | |
<!-- <h1>Hello Quera</h1> | |
<h2>Hello Quera</h2> | |
<h3>Hello Quera</h3> | |
<h4>Hello Quera</h4> | |
<h5>Hello Quera</h5> |
This file contains 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
1. یک فرم با تمامی اینپوت ها میسازین و با پست ریکوست به جایی ارسال میکنین | |
حداقل ده تا فیلد باید داشته باشه و از چک باکس و رادیو باتن با تمامی نکاتش استفاده شده باشه | |
2.https://developer.mozilla.org/en-US/docs/Web/HTML | |
3. مطالعه ی تمامی اینپوت ها و حل مثال هاش بجز جی اس ها | |
4. attribute - global -> مطالعه کنین | |
5. element | |
6. 5 site متفاوت رو تویه پی دی اف |
This file contains 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
### CSS Selectors | |
```html | |
1. bytag | |
h1 {} | |
2. byId | |
#id{} | |
3. byclass | |
.class{} |