Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created February 27, 2018 07:50
Show Gist options
  • Select an option

  • Save vldvel/da27ea961faf829d89165597a1b01603 to your computer and use it in GitHub Desktop.

Select an option

Save vldvel/da27ea961faf829d89165597a1b01603 to your computer and use it in GitHub Desktop.
string.split([param1[, param2]]); // All params are optional
// param1 - String or RegExp
// param2 - Number
// EXAMPLE
'ABCDEF'.split(); // ['ABCDEF']
'ABCDEF'.split('CD'); // ['AB', 'EF']
'ABCDEF'.split('CD', 1); // ['AB']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment