// DOM = DOCUMENT OBJECT MODEL // Object{} that represents the page you see in the web browser // and provides you with an API to interact with it. // Web browser constructs the DOM when it loads an HTML document, // and structures all the elements in a tree-like representation. // JavaScript can access the DOM to dynamically // change the content, structure, and style of a web page. console.log(document); console.dir(document); document.title = "My website"; document.body.style.backgroundColor = "hsl(0, 0%, 15%)"; const username = ""; const welcomeMsg = document.getElementById("welcome-msg"); welcomeMsg.textContent += username === "" ? `Guest` : username; Document Welcome
@bhigh1983 Жыл бұрын
Your video is good with clear explanations and it's easy for me to understand the code. I love it.
@masternobody1896 Жыл бұрын
bro make ai video
@kenkioqqo10 ай бұрын
Bro, this is the first time I've really understood how the DOM works. Thanks for the clear and simple breakdown of such a complex concept.
@ok_e3w11 ай бұрын
crazy good introduction, incredible I watched a 3 hour tutorial and didnt even scratch this, thx again
@l-fitness359011 ай бұрын
short simple videos are always better because you can just practice and mess around after with the information you learnt
@YUVRAJ_MAKWANA_GJ Жыл бұрын
I learnt html and css easily by your videos ❤ now I'm trying to learn js 🙏
@АсланАтабаев-я3и2 ай бұрын
How is your development today going?
@Gion-x3t4 ай бұрын
Great explanation. If you made an HTML version and a CSS version of this video, then combine all 3 into a playlist, it'd be a great introduction for anyone looking to code. I love the way you break down the stuff and have a simplification at the top. You keep things simple so ppl underdstand rather than copy. Bro Thanks.
@christiangeorge53134 ай бұрын
you never seize to amaze me. Great explanation!
@thejoker- Жыл бұрын
Alot support for you bro❤
@Tech-Dev9 ай бұрын
Cheers for this tutorial.
@AmjadGD Жыл бұрын
Thank you so so so much
@dustmukhammad11 ай бұрын
This is soo clear explanation broooo! Thank you!!!!
@khalidelgazzarАй бұрын
Great video. thank you!
@realoogabooga Жыл бұрын
please keep doing what you're doing bro🙏🏻
@AhmedRaza-ty7zq11 ай бұрын
Awesome video😎😎👍👍
@adaminsanoffАй бұрын
Great explanation! Thanks!
@Ryan-mk6ch6 ай бұрын
so clear and explanatory!! thank you for this video!!
@itsshafayat63788 ай бұрын
that is such a good explanation bro fr knows the bro code
@ikuubi Жыл бұрын
All I can say is _Understandable and have a good day_
@uxus-oh3qk7 ай бұрын
Best explanation...ever.
@nevouxjulie659511 ай бұрын
Great video !
@tasi-rella9922 ай бұрын
love this thank u !
@A_curious_chicken6 ай бұрын
Nice tutorial
@valenciawalker649810 ай бұрын
Thank you
@GoodBoy-lr7up4 ай бұрын
Really clear but really short
@chathuraranasingha49428 ай бұрын
0:07 DOM is not a JS object, but it represent the page we see in the browser
@danielgilleland57247 ай бұрын
DOM is a JS object _which_ represents the page we see in the browser.
@GoalDigger-footboll5 ай бұрын
for what purpose u use : sign use on line .
@gopalgohel4302 Жыл бұрын
Thank you sir
@kushagrarai7799 Жыл бұрын
Surprise Surprise mfs the King is back👑
@dipereira0123 Жыл бұрын
CHAD! Chanel 🍷🗿
@0166325 ай бұрын
i want to hit the mute button how do i use DOM to mute desktop audio???
@tsunningwah347110 ай бұрын
zguba!
@nihongo_10 ай бұрын
W
@hlahtunthein28305 ай бұрын
msg means Uncle Roger , 😂😂 just kidding
@LeonardMona-g2d4 ай бұрын
0281 Alf Motorway
@Zoooooooooooo4 ай бұрын
im a dom male
@tsunningwah347110 ай бұрын
fru
@SalmanSalman777-xu5hl3 ай бұрын
friend dont speak so fast we from asia(pakistan) and our english is weak so be cool and speaks in slow mode
@EverythingIsMathandPhysics3 ай бұрын
I'm from asia and i can understand everything. The trick is that you can change the speed of video to 0.75x or something just slow it then listen to it. Then when you're accustomed to his accent n stuff you can watch it on 1x
@Thewolf_22453 ай бұрын
Me too, I am from Brazil and I suffered to understand it 😅
@Thewolf_22453 ай бұрын
@@EverythingIsMathandPhysicsyes, I did it too
@SalmanSalman777-xu5hl3 ай бұрын
@@EverythingIsMathandPhysics ok boss
@timothyalex30912 ай бұрын
Big up bro. I feel your pain.😂
@sangeethasancharaya68706 ай бұрын
every time i code document.getelementbyId the console says document is not defined. how could i overcome this problem. im using node.js
@Raymond_G6 ай бұрын
document.getElementById()is displayed on the screen bro and not in the console. For the console ,it is Console.log() you have to define your element with console to view it in your console.