4
How to display received content through a objectNodeList ?
Through the following function I try to get the content of tags by 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 to display this content ?
that this izzas
– MagicHat