Answers for "how to remove js extation with filename using fs in node"

2

exclude extension from filename javascript

const file = 'test.jpg';
const filename = file.split('.').slice(0, -1).join('.');
Posted by: Guest on June-22-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 "how to remove js extation with filename using fs in node"

Code answers related to "Javascript"

Browse Popular Code Answers by Language