RosettaCodeData/Task/Program-name/JavaScript/program-name-1.js

9 lines
362 B
JavaScript
Raw Normal View History

2026-04-30 12:34:36 -04:00
function filename() {
// get the current script's URL
// or in the event of an embedded script, fall back to the document URL
const src = document.currentScript.src || document.location.href;
// parse out just the file name from the URL
// (no trailing slashes, search params or anchor fragments)
return src.replace(/[?#].*/, '').match(/[^\/]+/g);
2023-07-01 11:58:00 -04:00
}