Web design & 😃 development – Telegram
Web design & 😃 development
29.2K subscribers
786 photos
35 videos
88 files
825 links
Admin👮 @sreetamo @Tranjar

Get free resources for webdevelopment , html , CSS , JavaScript , reactjs , wordpress , Php , nodejs ...etc. Buy ads: https://telega.io/c/WebsiteDesignLearningGroup
👥Group👥 @website_DesignLearning_Group
Download Telegram
What is output of the above code?
Anonymous Quiz
54%
0 1 2 and 0 1 2
28%
0 1 2 and 3 3 3
18%
 3 3 3 and 0 1 2
Web design & 😃 development
function sayHi() { console.log(name);
console.log(age); var name = 'Lydia';
let age = 21; } sayHi();
🅰NSWER:
Within the function, we first declare the name variable with the var keyword. This means that the variable gets hoisted (memory space is set up during the creation phase) with the default value of undefined, until we actually get to the line where we define the variable. We haven't defined the variable yet on the line where we try to log the name variable, so it still holds the value of undefined.

Variables with the let keyword (and const) are hoisted, but unlike var, don't get initialized. They are not accessible before the line we declare (initialize) them. This is called the "temporal dead zone". When we try to access the variables before they are declared, JavaScript throws a ReferenceError.
Web design & 😃 development
What is output of the above code?
🅰️NSWER 🔵
Because of the event queue in JavaScript, the setTimeout callback function is called after the loop has been executed. Since the variable i in the first loop was declared using the var keyword, this value was global. During the loop, we incremented the value of i by 1 each time, using the unary operator ++. By the time the setTimeout callback function was invoked, i was equal to 3 in the first example.

In the second loop, the variable i was declared using the let keyword: variables declared with the let (and const) keyword are block-scoped (a block is anything between { }). During each iteration, i will have a new value, and each value is scoped inside the loop.
This media is not supported in your browser
VIEW IN TELEGRAM
Try to make this animation. After 10-12 hours source code will be given. Everyone should try.😊
This media is not supported in your browser
VIEW IN TELEGRAM
Hi awesome friends 💗💗
Try to make this sign in sign up form. Code will be provided after 10-12 hrs
This media is not supported in your browser
VIEW IN TELEGRAM
Try these loaders. Soon code will be available 😊