mirror of https://github.com/01-edu/public.git
zainabdnaya
1 year ago
1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@
|
||||
## wave |
||||
|
||||
### Instructions |
||||
|
||||
Create a function that turns a string into a Mexican Wave. |
||||
You will be passed a string and you must return that string in an array where an uppercase letter is a person standing up. |
||||
|
||||
### Expected function |
||||
|
||||
```js |
||||
function wave(str) { |
||||
} |
||||
``` |
||||
### Usage |
||||
|
||||
Here is a possible program to test your function |
||||
|
||||
```js |
||||
wave("holla") |
||||
console.log("\n") |
||||
wave("welcome to 01") |
||||
console.log("\n") |
||||
wave("welcome13") |
||||
|
||||
``` |
||||
And its output : |
||||
|
||||
```console |
||||
$ node . |
||||
["Holla", "hOlla", "hoLla", "holLa", "hollA"] |
||||
wrong string format |
||||
["Welcome13","wElcome13","weLcome13","welCome13","welcOme13","welcoMe13","welcomE13"] |
||||
``` |
||||
|
Loading…
Reference in new issue