how to get extension from string in javascript code example
Example 1: how to get the extension from filename using javascript
var ext = fileName.substr(fileName.lastIndexOf('.') + 1);
Example 2: how to get file extension in javascript last index
var extension = fileName.substring(fileName.lastIndexOf('.')+1);