why does it return error that querry selector all is not a funciton?
const rectangles = Document.querySelectorAll('#container div');
console.log(rectangles);
why does it return error that querry selector all is not a funciton?
const rectangles = Document.querySelectorAll('#container div');
console.log(rectangles);
It should be document
.
ah ok thank you
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.