Skip to content

Instantly share code, notes, and snippets.

@lean8086
Created August 7, 2012 14:30
Show Gist options
  • Save lean8086/3285840 to your computer and use it in GitHub Desktop.
Save lean8086/3285840 to your computer and use it in GitHub Desktop.
Get the file extension of a string
function getFileExtension(string) {
"use strict";
return string.split(".").pop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment