Skip to content

Instantly share code, notes, and snippets.

@joshrhoades
Created August 8, 2013 00:31
Show Gist options
  • Save joshrhoades/6180334 to your computer and use it in GitHub Desktop.
Save joshrhoades/6180334 to your computer and use it in GitHub Desktop.
var getFileExtension = function(theFile) {
return theFile.split('.').pop();
};
getFileExtension('myfile.js');//returns 'js'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment