What will be the output of the following code?
const parent = document.getElementById('parentElement');
const children = parent.children;
console.log(children.length);
What will be the output of the following code?
const parent = document.getElementById('parentElement');
const children = parent.children;
console.log(children.length);