import ejs from "https://esm.sh/ejs@3.1.7"; const people = ["geddy", "neil", "alex"]; const html = ejs.render('<%= people.join(", "); %>', { people: people }); console.log(html);