javascript get file extension
var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
javascript get file extension
var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
javascript find file extension from string
var ext = fileName.split('.').pop();
how to get the extension from filename using javascript
var ext = fileName.substr(fileName.lastIndexOf('.') + 1);
how to get file extension in javascript last index
var extension = fileName.substring(fileName.lastIndexOf('.')+1);
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);
how to get file extension in javascript
var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us