Answers for "how to find extension from file name js"

7

javascript find file extension from string

var ext =  fileName.split('.').pop();
Posted by: Guest on March-04-2020
1

how to get the extension from filename using javascript

var ext = fileName.substr(fileName.lastIndexOf('.') + 1);
Posted by: Guest on July-13-2020
0

file extension name in js

const path = require('path')

path.extname('picture.png') //.png
path.extname('picture.of.a.dog.png') //.png
path.extname('picture.of.a.dog.jpg') //.jpg
path.extname('picture.of.a.dog.jpeg') //.jpeg
Posted by: Guest on June-19-2021

Code answers related to "how to find extension from file name js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language