JSFiddle - React, Tailwind, and code Playground

by Nir Azuelos

JavaScript

function noExtension(fileName) {
    fileName = fileName.split('.');
    fileName.pop();
    return fileName.join('.');
}
var myFileName = noExtension("example.file.ps.png");
alert(myFileName);