Answers for "javascript how to get file extension"

16

javascript get file extension

var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
Posted by: Guest on August-02-2019
0

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);
Posted by: Guest on October-16-2020

Code answers related to "javascript how to get file extension"

Code answers related to "Javascript"

Browse Popular Code Answers by Language