https://github.com/mindsgn/learning-javascript
https://github.com/mindsgn/learning-javascript
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mindsgn/learning-javascript
- Owner: mindsgn
- Created: 2024-02-07T12:20:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T12:35:50.000Z (over 2 years ago)
- Last Synced: 2025-02-26T00:19:36.467Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JAVASCRIPT
## comments
single line comment
```
//
```
multiline comment
```
/* */
```
## Data Types
1. undefines
2. null
3. boolean
4. string
5. symbol
6. bigint
7. number
8. object
## Variable
variable allow data to be stored and manipulated. They do this by using a label to point to the data.
## Operators
assignment operator
```
=
```
subtraction operator
```
-
```
multiplication operator
```
*
```
division operator
```
/
```
remainder operator
```
%
```