tell application "Finder"
set itemList to (selection as alias list)
end tell
const Finder = Application("Finder")
const SystemEvents = Application("System Events")
const itemList = Finder.selection().map(e => SystemEvents.aliases[decodeURIComponent(e.url().substring(7))]())
JXA-Cookbook/JXA-Cookbook#8