Browse Source

docs(sign): correct grammar

pull/1068/head
davhojt 2 years ago
parent
commit
324a3a1983
No known key found for this signature in database
GPG Key ID: C8C3C515E7AF0D2D
  1. 17
      subjects/sign/README.md

17
subjects/sign/README.md

@ -2,23 +2,20 @@
### Instructions ### Instructions
Create the `sign` function that takes one number argument Create a function named `sign` that takes one number argument; returning `1` if the number is positive, `-1` if the number is negative and `0` if the number is exactly 0.
and return 1 if the number is positive, -1 if the number is negative > You must not just use `Math.sign`, make your own.
and 0 if the number is exactly 0
You must not just use `Math.sign`, make your own.
Create the `sameSign` function that takes 2 numbers as arguments and return true Create a function named `sameSign` that takes 2 numbers as arguments and returns `true` if they both have the same sign, or false otherwise.
if they both have the same sign, or false otherwise.
### Notions ### Notions
- [nan-academy.github.io/js-training/examples/functions](https://nan-academy.github.io/js-training/examples/functions.js) - [Functions](https://nan-academy.github.io/js-training/examples/functions.js)
- [nan-academy.github.io/js-training/examples/if-else](https://nan-academy.github.io/js-training/examples/if-else.js) - [If-else](https://nan-academy.github.io/js-training/examples/if-else.js)
- [devdocs.io/javascript/global_objects/math/sign](https://devdocs.io/javascript/global_objects/math/sign) - [Math.sign](https://devdocs.io/javascript/global_objects/math/sign)
### Code provided ### Code provided
> all code provided will be added to your solution and doesn't need to be submited. > The provided code will be added to your solution, and does not need to be submitted.
```js ```js
Math.sign = undefined Math.sign = undefined

Loading…
Cancel
Save