What will the value of the variable element be after executing the following code?
<p class="myClass">Text 1</p>
<p class="myClass">Text 2</p>
let element = document.querySelector('.myClass').innerText;
What will the value of the variable element be after executing the following code?
<p class="myClass">Text 1</p>
<p class="myClass">Text 2</p>
let element = document.querySelector('.myClass').innerText;