Back

Shubham

Fearlessย โ€ขย 11d

๐Ÿš€Day 06/21 โ€“ JavaScript DOM (Document Object Model) Todayโ€™s focus was on DOM โ€“ the way JavaScript interacts with web pages. ๐ŸŒ ๐Ÿ‘‰ DOM represents HTML as a tree structure. ๐Ÿ‘‰ With JS, we can select, modify, and create elements dynamically. Example: // Create new element let para = document.createElement("p"); para.innerText = "Learning DOM is fun!"; // Add to body document.body.appendChild(para); // Style it para.style.fontSize = "18px"; para.style.color = "green"; With DOM, static pages turn into interactive experiences โœจ #21JavaScript #JavaScript #WebDevelopment #LearnInPublic #CodingJourney

Reply
9

More like this

Recommendations from Medial

sai akhilesh

Student @Geethanjali...ย โ€ขย 1y

๐ŸŽ‰ The Wait is Over! ๐ŸŽ‰ The perfect DOM tutorial for beginners is finally here! Dive deep into the world of JavaScript and learn all about the DOM in a simple and easy-to-understand way. ๐Ÿ“š๐Ÿ’ป ๐Ÿš€ Watch Now: Perfect DOM Tutorial for Beginners ๐Ÿ‘‰ Don

See More
Reply
1
5

Shubham

Fearlessย โ€ขย 8d

๐Ÿš€ Day 08/21 โ€“ JavaScript Events Sorry for the 1-day gap ๐Ÿ™, but back on track with my 21-day JavaScript learning journey Today I learned about Events โ€“ actions that happen in the browser (clicks, key presses, scrolls, etc.), which we can capture a

See More
Reply
1
10

Shubham

Fearlessย โ€ขย 12d

Day 05/21 โ€“ JavaScript Functions & Methods Today I explored one of the most powerful concepts in JavaScript: Functions & Methods. ๐Ÿš€ ๐Ÿ”น Functions are blocks of code designed to perform a specific task. They help in reusability and make code cleaner

See More
Reply
1

Kalaiyarasan

Entrepreneurย โ€ขย 2m

Web 1.0 vs 2.0 vs 3.0 - The Evolution of the Internet ๐ŸŒ From reading static pages to owning digital identity, here's how the web grew up. Thatโ€™s Web 1.0 โ†’ Web 2.0 โ†’ Web 3.0. Each phase brought new powers, and new problems to solve. Letโ€™s break it

See More
Reply
2

Download the medial app to read full posts, comements and news.