javascript get extension end of a string code example
Example 1: javascript find file extension from string
var ext = fileName.split('.').pop();
Example 2: javascript get file extension from string
// Use the lastIndexOf method to find the last period in the string, and get the part of the string after that:
var ext = fileName.substr(fileName.lastIndexOf('.') + 1);