I am not sure that you would replay me or not but plz read my message once.. Bro you are doing really great to teach other you are posting video even you are not getting views ..Really appreciate.. You could really make other future but i dont know why people are not intrested on this kind of stuff but i am new to your channel i have just started learning c programing language through your channel and i am hoping that i would complete total series 0n 30 days.... You could really make my future.. Keep making video bro.. I would also try to learn other language through your channel.. thank for your hardwork to post video regularly to teach us
Hi Sir, I have no words to express my gratitude to your channel, seriously sir , your content and the way you understand the basic concepts in a simple manner is really praise worthy. Sir please create the new tutorial on Python language also core and advanced.
I do not have any words to appricete your hard work . Thanks a lot sir , to come in my life. I have never seen your face nor i know your name . But in coming few months i am going to get job in tech field . I got hope and confident after learning from your chennel . I am trying to connect or meet but not yet able to communicate with you , but i believe , one day i will definetly find you and will explain how you have changed my life. Thanks , your lovely student.
hi bro aap bhot acha explain karte hy har ke video but aap hamko kuch exercise bhi diyo aur uska hamko practice huyega hum ko bhot jayada experience huyega
I define the variable within the function without using 'var' but can't access on a Global level please recheck this -- It gives me an error "globalScope can't define". Here is the Code -- function globalScope(){ globalLocal = 'define under the function but has a Global scope' } console.log(globalLocal);
function outer(){ var x = "this is a Outer variable"; document.write(x + ""); document.write(y + ""); function inner(){ y ="this is a Inner variable"; document.write(y + ""); document.write(x + ""); } inner();
} outer(); If I have written this type of code then why not access an inner global variable of the outer variable. Inner variable to global hai to vo sabhi jagape accesss hona chahiye na please help kyu ae outer variable me access nahi hota.
when call inner(); then y will be valid and global. But here (your example) y before call inner(); Try this: function outer(){ inner(); var x = "this is a Outer variable"; document.write(x + ""); document.write(y + ""); function inner(){ y ="this is a Inner variable"; } } outer();
Hats off to you . Your video of JavaScript it's easy and clean and well explaination . Thank you so much
B.E ke student ho
i know Im kinda off topic but do anyone know of a good place to stream new movies online?
@Eden Ty lately I have been using Flixzone. Just google for it =)
@Mayson Torin yup, I've been watching on flixzone for since april myself :D
@Mayson Torin Thanks, I signed up and it seems to work :D I really appreciate it !
I am not sure that you would replay me or not but plz read my message once..
Bro you are doing really great to teach other you are posting video even you are not getting views ..Really appreciate..
You could really make other future but i dont know why people are not intrested on this kind of stuff but i am new to your channel i have just started learning c programing language through your channel and i am hoping that i would complete total series 0n 30 days....
You could really make my future..
Keep making video bro..
I would also try to learn other language through your channel.. thank for your hardwork to post video regularly to teach us
Thank You!!
@@geekyshows same here big brother
Same here.. :)
Same here
Very nice teaching with a lot of patience and covers all points! Very Good Sir!
Hi Sir, I have no words to express my gratitude to your channel, seriously sir , your content and the way you understand the basic concepts in a simple manner is really praise worthy. Sir please create the new tutorial on Python language also core and advanced.
Core Python ruclips.net/p/PLbGui_ZYuhigZkqrHbI_ZkPBrIr5Rsd5L
Advance Python ruclips.net/p/PLbGui_ZYuhijd1hUF2VWiKt8FHNBa7kGb
@@geekyshows thank u so much sir for your support...
Your way of explaining is great sir..you cover each n every detail..
sir aapka explain kia hua itna clear ha ki aab is ma kabhi confusion ho hi nahi sakta ..
Best channel on RUclips
Thanks you sir
I do not have any words to appricete your hard work . Thanks a lot sir , to come in my life. I have never seen your face nor i know your name . But in coming few months i am going to get job in tech field . I got hope and confident after learning from your chennel . I am trying to connect or meet but not yet able to communicate with you , but i believe , one day i will definetly find you and will explain how you have changed my life.
Thanks ,
your lovely student.
Thanks and welcome
ohhhh ...excellent!!!!!!!!!!!!!!!!!!. aswm..!!!!!!!!!!!!!!!!!! A1 explanation..........Thanks a lot
14:00..Function function..bhai bhai😂😂🙌
..
Topic explanation is lit🔥🔥
thank you So Much brother... this concept is very confusing for me... but video help me a lot
Very nice teaching and covers all points Clean and Clear in concept.Please Explain the word 'Hoisting' in Javascript.Thanks
vary Good ! I like always geeky shows.
Clean and Clear in concept.. Thank you 👍
I wish I may like each and every video thousands times ❤️😘
Good Teaching Skill......
Hats off to you Sir 😊
very nicely done,amazingly explained
Thank you hindi ke liye ⭐⭐⭐⭐⭐
superb "TEACHING"
thank you very much brother
excellent teaching bro great job
Very nice and easy explaination
Thank's For videos.It's very helpful.
anywhere means anywhere.. 4:23 This was funny... sir videos in react is also in demand .
ruclips.net/p/PLbGui_ZYuhignjLLXTJWkRJKN-SgAqClL
nice and great explanation thanks sir
Nice explaination..........................
good my bro thank you keep it up!!!
wao so nice sir love from pakistan
nice explanation
Thank you ☺️
hi bro aap bhot acha explain karte hy har ke video but aap hamko kuch exercise bhi diyo aur uska hamko practice huyega hum ko bhot jayada experience huyega
SIR AT 11:14 TIME YOU are not using semicolon when you are calling the show() function
Thanks for explaining bro
Best explain.... Sir
thank you for explaining me
17:15
Hats off to u
Good Teaching skills, can you able to teach me React, Redis and Redux please reply when you read this.
Thanks you
Follow below Playlist for React JS and Redux
ruclips.net/p/PLbGui_ZYuhignjLLXTJWkRJKN-SgAqClL
ruclips.net/p/PLbGui_ZYuhiipCzznFp8Lmpgt0Gt5lUm1
@@geekyshows Thank you bro :)
Thank you sir
17:45 variable ko declare toh nahi kya humne. Yaha toh error ana chahiye tha
same my question
Ap var keyword likha bagar bhi variable likh sakta ho
hi bro aap angular 8 ka tutorial bhi bana dijiyena
great
I define the variable within the function without using 'var' but can't access on a Global level please recheck this -- It gives me an error "globalScope can't define".
Here is the Code --
function globalScope(){
globalLocal = 'define under the function but has a Global scope'
}
console.log(globalLocal);
Nice
tghanks sir.bd.
function outer(){
var x = "this is a Outer variable";
document.write(x + "");
document.write(y + "");
function inner(){
y ="this is a Inner variable";
document.write(y + "");
document.write(x + "");
}
inner();
}
outer();
If I have written this type of code then why not access an inner global variable of the outer variable.
Inner variable to global hai to vo sabhi jagape accesss hona chahiye na please help kyu ae outer variable me access nahi hota.
when call inner(); then y will be valid and global. But here (your example) y before call inner();
Try this:
function outer(){
inner();
var x = "this is a Outer variable";
document.write(x + "");
document.write(y + "");
function inner(){
y ="this is a Inner variable";
}
}
outer();
change your text editor .
sir wo apka bagwan dubai ke galyo ma ghote laga raha ta 😂😂😂😂
I am watching in 2023
like it
Sir tutorials ki numbering kare
ruclips.net/p/PLbGui_ZYuhiiaQjuOfvgx_-gzVBlCxrk0
Thank You Sir