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.
25 lines
568 B
25 lines
568 B
4 years ago
|
## Abs(olute)
|
||
|
|
||
|
### Instruction
|
||
|
|
||
|
Create a `isPositive` function that takes a number as
|
||
|
parameter and return true if the given number is
|
||
|
stricly positive, or false otherwise
|
||
|
|
||
|
Create the `abs` function that takes one number argument
|
||
|
and returns its absolute value.
|
||
|
You are not allowed to use `Math.abs`, make your own.
|
||
|
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- https://nan-academy.github.io/js-training/examples/functions.js
|
||
|
- https://nan-academy.github.io/js-training/examples/ternary.js
|
||
|
- https://devdocs.io/javascript/global_objects/math/abs
|
||
|
|
||
|
|
||
|
### Code provided
|
||
|
```js
|
||
|
Math.abs = undefined
|
||
|
```
|