Simple and very methodological explanations I've ever seen. Deeply thankful for your job :)
@GiftMthimunye Жыл бұрын
Wow never knew it was this easy great explanation 💪
@BroCodez Жыл бұрын
// variable = A container that stores a value. // Behaves as if it were the value it contains. let fullName = "Bro Code"; let age = 25; let isStudent = false; document.getElementById("p1").textContent = `Your name is ${fullName}`; document.getElementById("p2").textContent = `You are ${age} years old`; document.getElementById("p3").textContent = `Enrolled: ${isStudent}`; My website
@RealReeks8 ай бұрын
The ${} just isnt working for me
@aliayob40014 ай бұрын
Because you aren't using the same type characters that he is using for the string. Use ` not '@@RealReeks
@staniokstqrtwyr894 ай бұрын
@@RealReeks Probably you are using a single quote ' instead of a back tick `
@SourovChandraBarmon3 ай бұрын
🥰
@runaway43584 ай бұрын
Ohh finally i found a perfect channel for learning JS, thanks BroCode.
@sunnywunnyАй бұрын
the biggest betrayal ever would be if Bro came out and said that his favourite food wasnt actually pizza and he just said it and went with it.
@DoNsMaK19011 ай бұрын
U are the the most giga chad on youtube ever thanks!!
@saimothi67158 ай бұрын
thank you so much sir.. for great & clear explaination
@helioobianchi7 ай бұрын
Thanks, bro. You're a real bro 💪
@piotrmazgaj3 ай бұрын
This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.
@wewindows1Ай бұрын
i wish you were my professor in my university
@TheStRaX_ Жыл бұрын
My bro codes, by watching bro code
@chibuezealaekwe42127 ай бұрын
This is great, thanks
@IBAÑEZJAYNIEL9 ай бұрын
Thankyou so much
@younestrigui5446 Жыл бұрын
bro ! you are the best ever
@Fad-kunАй бұрын
Thanks
@ArteenAhmadzadeh Жыл бұрын
Im i the only one who can see these?
@peaklegacy146 Жыл бұрын
This video is unlisted. That means you can only see this video if you have the link to it. You got the link by clicking on the video at the end of the previous video
@Luxury_Deluxe_original4 ай бұрын
See what?
@medad1877 Жыл бұрын
I wrote console.log('you are ${age} years old'); like this but it's not typing the number of age, it's just write the ${age} like this in the out put, I don't know what is my mistake. help me ...
@АнатолійБагняк Жыл бұрын
Try to use ` instead of " or '
@BroCodez Жыл бұрын
@medad1877 use backticks ` ` not apostrophes ' ' They do look similar
@alfiemccalfry66358 ай бұрын
You might be viewing the wrong section. I was getting frustrated for a while until I realised it was because I was viewing the source instead of the console on the browser.
@damiancruzpino6988Күн бұрын
same happened to me haha, I came from learning python, but it seams in js is this things `` instead of "".
@antoindustries6774 Жыл бұрын
👍👍👍👍
@EledeRR Жыл бұрын
Here before it gets released to public
@Talaleyachoo2 ай бұрын
Cs get degrees,best line ever😂
@oluwajomilojuajagbe59284 ай бұрын
Hi, Good day. Please what is the difference between .innerHTML and .textContent
@izume53011 ай бұрын
I'm getting this error when i try to run it even when i copied and pasted everything from the comment or the video Uncaught TypeError: Cannot set properties of null (setting 'textContent') what should i do?
@ShineOnStar11 ай бұрын
place at the end of body
@RealReeks8 ай бұрын
at the end of which body cause its not working for me either @@ShineOnStar
@Muuslim77778 ай бұрын
when I write ${} the compiler read it as string what the solve ??
@thatkid-memeandedit23417 ай бұрын
Use backticks => `` Don't use these=> " " or ' '
@00CrayZ000Ай бұрын
use the shortcut ctrl + / after selecting the command to make it as a comment
@Ahilanims202413 күн бұрын
But i can still learn it with eaze
@DataFlux-k5t Жыл бұрын
i wish i could give you a Pizza😍😍
@mijana961 Жыл бұрын
Just want to let you know i love you
@Ahilanims202413 күн бұрын
um yeah im just a 9 year old im not in high school
@tychedev Жыл бұрын
what happened??
@a.102311 ай бұрын
let x; x = 100; console.log(x) Let age=25; console.log(age) / console.log (`you are {age} years old`)