-2
How to replace the word "Minutes" with "Minutes" inside the div.info-box?
<div class="info-box">
<span class="date-info">13 de julho de 2021</span>
<span class="separator-symbol">•</span>
3 Minutes
</div>
I tried to use this syntax to identify the word to be replaced and perform its substitution, but it didn’t work:
document.querySelector('.info-box').replace('Minutes' , 'Minutos');
I also tried using . innerText but it replaces everything inside the div.info-box, including spans.
To analyze: what is the function return type
querySelector
? This type allows areplace
?– Woss