-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
24 lines (20 loc) · 904 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Ref: https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Global_Objects/Array
exibiFilmes = document.getElementById("exibiFilmes");
listaFilmes = [
"https://br.web.img2.acsta.net/pictures/19/07/23/20/57/4907896.jpg",
"https://br.web.img3.acsta.net/c_310_420/pictures/16/10/19/01/57/552532.jpg",
"https://br.web.img3.acsta.net/medias/nmedia/18/91/90/98/20169244.jpg"
];
for (var i = 0; i < listaFilmes.length; i++) {
exibiFilmes.innerHTML += "<img src=" + listaFilmes[i] + ">";
}
function AdicionarFilme() {
var filmeASerAdicionado = document.getElementById("filmeASerAdicionado").value;
if (listaFilmes.includes(filmeASerAdicionado)) {
alert("Já contem esse filme, não pode ser adicionado");
return;
} else {
listaFilmes.push(filmeASerAdicionado);
exibiFilmes.innerHTML += "<img src=" + filmeASerAdicionado + ">";
}
}