const tpl = ({ name }) => `hello ${name}`; const n1 = tpl({ name: "joe" }); const n2 = tpl({ name: "bob" });
const tpl = (o) => `hello ${o.name}`;