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
390 B
15 lines
390 B
4 years ago
|
## Mirror
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Declare a variable `mirror` of the reversed provided variable `word`.
|
||
|
|
||
|
_example: `desserts` would be `stressed`_
|
||
|
|
||
|
> Note that **reverse** only exist on array, you must first find a way to
|
||
|
> convert the word too an array to use it !
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- [devdocs.io/javascript/global_objects/array/reverse](https://devdocs.io/javascript/global_objects/array/reverse)
|