From 1b1c7d672be13a5063f77e2a0a0296066f05f1ab Mon Sep 17 00:00:00 2001 From: pedrosortega Date: Wed, 18 Jun 2025 12:05:28 -0400 Subject: [PATCH] solved first problem --- script.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script.js b/script.js index 5762129..b2713b2 100644 --- a/script.js +++ b/script.js @@ -18,3 +18,8 @@ console.log("Hello! If you see this, the script is working."); // Try rewriting this without using querySelector const header = document.querySelector("#container"); console.log("header", header); + +// [ ] Select the section with an id of container without using querySelector. + +const noSelector=document.getElementById("container"); +console.log("noSelector",noSelector); \ No newline at end of file