How to display content received through objectNodeList
?
Through the following function I try to get the contents of the tags through the class.
function final(){
var titulos = document.querySelectorAll(".p2.p2-resultado-busca");
var result = document.getElementById('result');
result.innerHTML = titulos;
}
However, it returns an object, how do you display it?