Merge pull request #188 from TMatrix/patch-2

Typo - miss letter 't'
This commit is contained in:
Ilya Kantor 2017-09-18 07:57:37 +02:00 committed by GitHub
commit a2dbffc201

View file

@ -472,7 +472,7 @@ alert( str.split('') ); // t,e,s,t
```
````
The call [arr.join(str)](mdn:js/Array/join) does the reverse to `split`. It creates a string of `arr` items glued by `str` beween them.
The call [arr.join(str)](mdn:js/Array/join) does the reverse to `split`. It creates a string of `arr` items glued by `str` between them.
For instance: