Somebody could me explain in this quizz DOM & Events | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Somebody could me explain in this quizz DOM & Events

Somebody could me explain in this quizz DOM & Events Module 7 Quiz https://www.sololearn.com/Play/JavaScript I dont understand why the first answer its(" p") var arr = document getElementsByTagName("p"); for(var x=0; x<arr.length; x++) { arr[x].innerHTML="SoloLearn"; }

11th Aug 2017, 8:57 AM
Michael Tuninetti
Michael Tuninetti - avatar
1 Answer
+ 6
the answer: this quiz want you to write sololearn in <p> tag. 'cause <p> tag usually used for text. var arr = document.getElementsByTagName("p"); /* this code is call <p> tag from HTML document */ for(var x=0; x<arr.length; x++) { arr[x].innerHTML="SoloLearn"; }
11th Aug 2017, 9:47 AM
Amethyst Animion
Amethyst Animion - avatar