mirror of https://github.com/01-edu/public.git
zainabdnaya
1 year ago
1 changed files with 31 additions and 0 deletions
@ -0,0 +1,31 @@
|
||||
## splitStringIntoPairs |
||||
|
||||
### Instructions |
||||
|
||||
Splits the string into pairs of two characters. |
||||
If the string contains an odd number of characters then it should replace the missing second character of the final pair with an underscore ('_') |
||||
### Expected function |
||||
|
||||
|
||||
```js |
||||
function splitStringIntoPairs(str) { |
||||
} |
||||
``` |
||||
|
||||
### Usage |
||||
|
||||
Here is a possible program to test your function : |
||||
|
||||
```js |
||||
console.log(splitStringIntoPairs("abc")); |
||||
console.log( splitStringIntoPairs("abcdef")); |
||||
``` |
||||
|
||||
And its output : |
||||
|
||||
```console |
||||
$ node index.js |
||||
$ ['ab', 'c_'] |
||||
$ ['ab', 'cd', 'ef'] |
||||
|
||||
``` |
Loading…
Reference in new issue