JavaScript Advance Crash Course: Level Up Your Coding Skills! Accelerate Your Front-End Mastery!

preview_player
Показать описание
Are you ready to take your JavaScript skills to the next level? Look no further! Join our JavaScript Advance Crash Course and catapult your coding prowess to new heights in no time. In this fast-paced, power-packed video series, you'll learn advanced techniques and concepts that will elevate your front-end development skills to a whole new level.

From mastering complex JavaScript functions and working with advanced DOM manipulation to understanding asynchronous programming and harnessing the power of APIs, this crash course covers it all. We'll guide you through practical examples and real-world projects, ensuring you gain hands-on experience that will solidify your understanding.

Accelerate your front-end mastery as we delve into topics like closures, prototypes, promises, and much more. Our concise and focused approach ensures that you'll grasp the essential concepts quickly, allowing you to apply them immediately in your projects.

Don't miss out on this opportunity to level up your coding skills in a flash. Enroll in our JavaScript Advance Crash Course today and witness your front-end development journey skyrocket! Get ready to unlock the full potential of JavaScript and become a true coding superhero!

Instructor in this video: Harsh Sharma

Socials:
Peace ✌️

#javascript #frontend #coding #frontenddevelopment #javascripttraining #webdevelopment #javascriptmastery #handsonlearning #codingjourney #javascriptbasics #javascripttutorial #programming #webdevelopment #javascriptcode #learnjavascript #codingjourney

===========================================
Timestamps:

0:00 - 3:42 - Intro
3:43 - 11:13 - 1st Difference b/w Var, Let, Const
11:44 - 15:10 - 2nd Difference b/w Var, Let, Const
15:11 - 26:40 - 3rd Difference b/w Var, Let, Const
17:30 - 24:46 - Window Object
24:47 - 27:34 - Browser Context API
27:48 - 28:40 - Stack
28:41 - 30:50 - Heap Memory
30:51 - 39:56 - Execution Context
39:57 - 41:38 - Lexical Environment
41:46 - 47:34 - How to copy reference values
47:39 - 52:43 - Truthy vs Falsy
52:44 - 53:28 - Switch Case
53:45 - 1:01:22 - ForEach Loop
1:01:23 - 1:05:47 - For in Loop
1:05:49 - 1:07:23 - Do While Loop
1:09:44 - 1:19:25 - Callback Function
1:19:26 - 1:23:42 - First Class Functions
1:23:43 - 1:27:00 - How Arrays are made behind the scenes, How we can make negative indexes arrays in JS
1:27:26 - 1:28:10 - How to delete Object Prop
Рекомендации по теме
Комментарии
Автор

Hello Dosto, thodi si glti hogayi stack waale part mein, agle video mein dhang se clear krunga ❤

sheryians
Автор

Yes we really need a frontend competition. Eagerly Waiting for it!😄

adityafc
Автор

Tera padhane ki tarika unique hai aur badiya hai, don't change the way you teach.

relaxationmusic
Автор

0:00 - 3:42 - Intro
3:43 - 11:13 - 1st Difference b/w Var, Let, Const
11:44 - 15:10 - 2nd Difference b/w Var, Let, Const
15:11 - 26:40 - 3rd Difference b/w Var, Let, Const
17:30 - 24:46 - Window Object
24:47 - 27:34 - Browser Context API
27:48 - 28:40 - Stack
28:41 - 30:50 - Heap Memory
30:51 - 39:56 - Execution Context
39:57 - 41:38 - Lexical Environment
41:46 - 47:34 - How to copy reference values
47:39 - 52:43 - Truthy vs Falsy
52:44 - 53:28 - Switch Case
53:45 - 1:01:22 - ForEach Loop
1:01:23 - 1:05:47 - For in Loop
1:05:49 - 1:07:23 - Do While Loop
1:09:44 - 1:19:25 - Callback Function
1:19:26 - 1:23:42 - First Class Functions
1:23:43 - 1:27:00 - How Arrays are made behind the scenes, How we can make negative indexes arrays in JS
1:27:26 - 1:28:10 - How to delete Object Prop

depth
Автор

I think you have explained 10% of your knowledge. We have no problem if you make 10 hours video also. Please make a detailed video for Ajax. Your explanation is fabulous sir. You earned a student...❤❤

manasranjanpanda
Автор

Just wanna say one thing you are setting a new level of teaching on Youtube, others set their level at their time at that time they are best but the way you are teaching is what we are expecting now because you are not copying that old content type and syllabus - I am from Pakistan and trust me bhiya you add a lot of value in my knowledge i rarely comment on videos but your effort and content force me to write these things 😍😇

Edit: Thanks everyone for liking let's support them to hit 1M

faizanraja_
Автор

it is like history is repeating itself, jab me JEE ki preperation kar rha tha tab Alakh sir bhi aap ke jese same condition me the, but his value addition in students life paid him, aap ko bhi ak din ye nature return back karega, wo bhi 10X what you are giving to us.

Abhishek-ebqs
Автор

This level of indepth knowledge of JavaScript in such a short video is hard to find on YouTube. Kudos

chiraagb
Автор

they way he teaches programming is amazing 👏 i can literally learn straight 3 to 4 hours without getting bored that's his skill and it's amazing❤in my opinion he's the best. I have learned from most of the top channels on youtube and also learned from paid courses but what he is teaching and mainly the way he is teaching is best. hats of to him 👍

anaskhalid
Автор

i had to pause the video and comment on how much i loved your way of teaching as if u r teaching one on one to each person enjoined this please let this type of content keep coming
new follower from PAK/USA

rabiaakmal
Автор

Here are my notes, I hope it will somehow help others:

### JavaScript Advance Crash Course:

1. JavaScript has two version es5 (Older) and es6 (Newer).
es5 includes → var
es6 includes → var, let, const
2. var is function scoped, means that - if you declared var anywhere in the function scope, you can easily access it within the function scope anywhere.
3. let is braces is scoped, you can access let variable within only the braces and not outside of it.
4. There are some features that we can use in JavaScript, that is not included in JavaScript but it can be still used and those features are called as ‘window’. And those features are provided by the browser.
- var adds itself to window object. [It’s window and not windows]
- let and const don’t add themselves to window object.
5. If you open console, and type window on it and hit enter. You can see the declared var variables inside it, which was the security concern. While on the other hand const and let don’t show their variable values inside the window object, which also one of the few reasons why it’s used more than var declaration.
6. When browser provide 3 features and they are called as browser context API.
The 3 features are:
- Windows
- Stack
- Heap Memory
7. Stack: LIFO (Last In, First Out).
8. Heap Memory: Intermediate data which is generated during the process is stored in the Heap Memory.
9. Whenever function runs, it creates and execution context. Execution context is basically an imaginary box which contain variable, function under the parent function and lexical environment of that function.
10. Lexical environment basically act as scope. It tells which function can access which functions variable, like a scope chain. A child can access his parents variable, but a parent can’t access that child's variable, because that parent function is not declared inside the child function.
11. To copy the reference values we use Spread syntax (...) to do it.
12. Falsy: 0 undefined null Nan document.all
Truthy: Besides all of the Falsy values, everything is Truthy.
13. forEach act as a loop, which iterate over each value in an array. And because it iterate over each value in array, you can perform all of the operation related to array & iteration, like adding the original value with another value etc.
One thing to remember is forEach make changes in the array values, but the original array values never get changed. It creates its own temporary copy to perform the operations.
14. forin act as a loop, which iterate over each value in an object.
15. do-while: firstly perform the operation then check the condition.
16. Callback function: It basically sets an time limit, and after that time limit a particular task or function gets executed only if the task inside that function is completed otherwise it will keep waiting until the task inside that function is completed, and after it’s completed it will basically print it out on the screen.
17. First class functions: You can store functions inside an variable.
18. Arrays in JavaScript are technically Objects. Where objects key acts as arrays index and it’s value as arrays value. And because of this property, you can create an negative index in array and assign it a value.
19. To delete an obj, write delete.keyName;

NoTimeWaste
Автор

I have never seen a creator teaching like this as you are. I am always here for you to achieve your Goals. Love you and your team so much. 🥰🥰🥰

billionairemindset
Автор

Bhaiya aap kitne bhi bade videos banao... We will happily learn and listen you... Aap selflessly wo deto ho jo students ka actual requirement hai...apko appreciate krne ke liye sach me words nhi suzte.... Bcoz aapke liye utna respect hai...

chaitalidesai
Автор

I've watched countless JS tutorials, but this one is on another level. Amazing explanations and examples. Great job! 👍🔥

bunnytheweebster
Автор

everyone's content is different. i saw many javascript videos but nobody taught about these concepts in such an interesting way. your teaching makes me want to study. Thank you so much

triptisinghal
Автор

I'm really impressed with the style of teaching. Outstanding bro, pure YouTube pe koi itna best nahi padhata hoga

shushilvishwakarma
Автор

Sir, i will truly say that i have watched many many tutorials of javascript, html, css from many many youtubers e.g:codewithharry, thapatechnical, apnacollege, I don't want to offend anyone, but nobody teaches in the way like you teaches us, You know the secrets that how to teach a beginner .Hatsoff to you, Sir.

Filmy_world_official
Автор

I had never seen such a good teacher with such an awesome clarity teaching skills.❤

charlieyt
Автор

or me In Sha Allah jab developer banungi to hamesha apka or shriyans coding school naam meri kamiyabi k sath age tak chakkega or sab ko bataungi k mere parents k baad aap log hain meri success ke peeche🥰😇❤

wasishah
Автор

You are the best YouTuber I've seen as a teacher. Your teaching is clear and easy to understand, focusing on relevant content. I appreciate your teaching strategy. Learn 20% in order to understand 80% because 80% of the result cause by 20% of the action. Learn what matter is the best crash course I have ever seen.

themaskboygamer