Answers for "get file name without extension string js"

7

javascript find file extension from string

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

node js get file name without extension

filename.split('.').slice(0, -1).join('.')
Posted by: Guest on October-04-2020

Code answers related to "get file name without extension string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language