function adicionar() {
let amigo = document.getElementById('nome-amigo');
//VALIDANDO SE TEM UM NOME ESCRITO NO INPUT ANTES DE ADICIONAR
if(amigo.value == ''){
alert('Informe o nome do amigo');
return;
}
//VALIDANDO SE TEM O MESMO NOME
if(amigos.includes(amigo.value)){
alert('Nome já adicionado');
return;
}
let lista = document.getElementById('lista-amigos');
amigos.push(amigo.value);
if (lista.textContent == '') {
lista.textContent = amigo.value;
} else {
lista.textContent = lista.textContent + ', ' + amigo.value;
}
amigo.value = '';
}