how to get file extension in javascript code example

Example 1: javascript get file extension

var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"

Example 2: javascript find file extension from string

var ext =  fileName.split('.').pop();

Example 3: how to get the extension from filename using javascript

var ext = fileName.substr(fileName.lastIndexOf('.') + 1);

Example 4: 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);

Example 5: how to get file extension in javascript

var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"

Example 6: how to check the extension of a file in javascript

return filename.split('.').pop();