mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
331 B
15 lines
331 B
4 years ago
|
## Primitive
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Create a constant variable for each primitives:
|
||
|
- `str` for `String`
|
||
|
- `num` for `Number`
|
||
|
- `bool` for `Boolean`
|
||
|
- `undef` for `undefined`
|
||
|
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- https://nan-academy.github.io/js-training/examples/primitive-and-operators.js
|
||
|
- https://nan-academy.github.io/js-training/examples/variables.js
|