Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created September 1, 2019 04:27
Show Gist options
  • Save heinthanth/96b1262e82d9818a04349ce89536c1e1 to your computer and use it in GitHub Desktop.
Save heinthanth/96b1262e82d9818a04349ce89536c1e1 to your computer and use it in GitHub Desktop.
slice
var str = "Hello, World";
var result = str.slice(3, 8);
// result become "lo, W";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment