Ciao a tutti, questo è quello che ho fatto:

codice:
        const cntInp = document.querySelector(".cnt-inp");
        let cls = ["cnt-form", "cnt-btn"];
        let nodes = cls.map(item => {
            tag = document.createElement("div");
            tag.classList.add(item);
            return tag;
        });
        cntInp.append(nodes);
ma ricevo in output questo:
[object HTMLDivElement],[object HTMLDivElement]