Answers for "how to get the extension of filenames when whole file name is given in nodejs"

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

Code answers related to "how to get the extension of filenames when whole file name is given in nodejs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language