I want to get an HTML element that is with a class, but that same class is in other elements.
<img class="imagens-noticias" src="imagens-noticias/noticia-1.png" alt="imagem">
<img class="imagens-noticias" src="imagens-noticias/noticia-2.png" alt="imagem">
<img class="imagens-noticias" src="imagens-noticias/noticia-3.png" alt="imagem">
Is it possible to get the first image without affecting others using pure JavaScript?