Alguém poderia me ajudar?
HTML
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<section id="lista-filmes"></section>
</body>
</html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/ajax.js"></script>
///////////////////////////////////////////////
ajax.js
$("#lista-filmes").ready(function(){
var filmes = [];
$.get("https://www.mocky.io/v2/5ad631b32e00001000c93a96", function(data){
console.log(data);
console.log(typeof data);
filmes.concat(data);
});
console.log(filmes);
});
retorna um vetor em branco, fiz com forEach, e "deu certo" só que quando eu faço filmes[0]
o resultado é undefined