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.
34 lines
1.0 KiB
34 lines
1.0 KiB
4 years ago
|
## Is
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Add new function properties to the object `is` to check a value type
|
||
|
- `is.num` value is a number
|
||
|
- `is.nan` value is NaN
|
||
|
- `is.str` value is a string
|
||
|
- `is.bool` value is a boolean
|
||
|
- `is.undef` value is undefined
|
||
|
- `is.def` value is defined
|
||
|
- `is.arr` value is an array
|
||
|
- `is.obj` value is a simple object or null objects
|
||
|
- `is.fun` value is a function
|
||
|
- `is.truthy` value is truthy
|
||
|
- `is.falsy` value is falsy
|
||
|
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- [nan-academy.github.io/js-training/examples/primitive-and-operators](https://nan-academy.github.io/js-training/examples/primitive-and-operators.js)
|
||
|
- [devdocs.io/javascript/operators/typeof](https://devdocs.io/javascript/operators/typeof)
|
||
|
- [developer.mozilla.org/en-US/docs/Glossary/Truthy](https://developer.mozilla.org/en-US/docs/Glossary/Truthy)
|
||
|
- [developer.mozilla.org/en-US/docs/Glossary/Falsy](https://developer.mozilla.org/en-US/docs/Glossary/Falsy)
|
||
|
|
||
|
|
||
|
### Code provided
|
||
|
|
||
|
> all code provided will be added to your solution and doesn't need to be submited.
|
||
|
|
||
|
```js
|
||
|
const is = {}
|
||
|
```
|