diff --git a/subjects/splitStringIntoPairs/README.md b/subjects/splitStringIntoPairs/README.md new file mode 100644 index 000000000..dfc50988c --- /dev/null +++ b/subjects/splitStringIntoPairs/README.md @@ -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'] + +```