Skip to content

Instantly share code, notes, and snippets.

@Ryanb58
Created February 16, 2017 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ryanb58/7d08e358e0a1dbdf2a7244a6f4ebdc23 to your computer and use it in GitHub Desktop.
Save Ryanb58/7d08e358e0a1dbdf2a7244a6f4ebdc23 to your computer and use it in GitHub Desktop.
Snippets I create that help me with Javascript

Remove text from the end of a String.

function removeFromEnd(original, textToRemove){
	return original.substring(0, original.length - textToRemove.length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment