function msg () {
    console.log("Eu sou um programador!")
};
let mensagem = setTimeout(msg,5000);

function inter() {
    console.log("Sou um instrutor!")
}
let intervalo = setInterval(inter,1000);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: