The JavaScript Survival Guide

  Переглядів 710,962

Fireship

Fireship

4 роки тому

The JavaScript Survival Guide 🧟 provides protection from the so-called "weird" features that you will encounter as a JS developer. This primer will introduce you to variables, functions, objects, closures, hoisting, this-binding, and more. fireship.io/courses/javascript/
#javascript #tutorial
Primary source: developer.mozilla.org
Take the quiz 🤓
iOS itunes.apple.com/us/app/fires...
Android play.google.com/store/apps/de...
Upgrade to Fireship PRO at fireship.io/pro
Use code lORhwXd2 for 25% off your first payment.

КОМЕНТАРІ: 707
@darshangowda309
@darshangowda309 4 роки тому
Who knew a tutorial could be this entertaining :P
@alejandrocano88
@alejandrocano88 4 роки тому
haha i know
@Deskofmj
@Deskofmj 4 роки тому
i just said broooo and left :D couldn't handle it man
@diegoruelas603
@diegoruelas603 4 роки тому
Lol
@christianpaul5224
@christianpaul5224 3 роки тому
That's a 45 minutes in a nutshell.
@angelmeza9716
@angelmeza9716 Рік тому
3txx xx xxx xx ttx🇦🇴🇨🇮🇧🇮🇧🇯📶🔉📟 R Xezrzñpp
@thatnod
@thatnod 4 роки тому
I first contracted the JavaScript virus 21 years ago, so I'm not exactly new to it. In under 15 minutes you explained everything I found confusing or contrary. It now makes sense. No longer will I think of JavaScript as quirky and insidious. Thank you!
@noscreadur
@noscreadur 2 роки тому
Likewise Mr. L: After 21 years JavaScript is almost unrecognisable in structure and scope. It's not a dirty hack anymore, it is the full-stack/style agnostic/polished hegemonic state of the art.
@carlosmspk
@carlosmspk 2 роки тому
@@noscreadur use Typescript though...
@bparlan
@bparlan Рік тому
I began coding with Basic in 1998, used html css sql and python until 2008, then stopped. Now I am trying to learn react, needed that javascript stuff, this video is beyond enlightenment.
@willmil1199
@willmil1199 Рік тому
same
@b4ttlemast0r
@b4ttlemast0r Рік тому
it still doesnt make sense lol, but at least you understand it now
@MrDoom159
@MrDoom159 4 роки тому
Never seen a more intense JS tutorial before
@whong09
@whong09 3 роки тому
"You should respect the legacy of var but never use it." Why do I feel like you're not even being ironic about this.
@tvguideondemand
@tvguideondemand 3 роки тому
Why would he be ironic? Is there any legitimate reason to use var in 2020?
@Neko_Void
@Neko_Void 3 роки тому
@@tvguideondemand ignorance
@this_mfr
@this_mfr 3 роки тому
I'm learning JS and I keep running into things saying that Let should only ever designate a local variable and Var should be used for global. But that global variables are dangerous and so only local variables should be used, meaning you would use Let...but that doesn't explain why not use Var? Legit questions because I keep seeing conflicting stuff...
@MrMontana1990
@MrMontana1990 3 роки тому
@@tvguideondemand if you are writing js that will not be transpiled (babel or typescript) and usage by legacy browser should be possible you still have to use var. that should be mentioned
@xyzzy64
@xyzzy64 2 роки тому
@@this_mfr If you have a global variable then it should be declared in such a way that it would remain global even by using the let keyword, otherwise you might want to look into how you're writing your code. Don't use var, let defines variables as god intended lmao
@KJMcLaws
@KJMcLaws 4 роки тому
Don't change anything on how you are doing this. Awesome quality content
@newtonmunene
@newtonmunene 4 роки тому
Fireship is perfect for me. The videos are brief but comprehensive. This makes them interesting. It also makes them perfect as refreshers. I also get to learn so many new things with every video.
@Fireship
@Fireship 4 роки тому
Glaring typo *Primatives* 🐵 - I am aware, but can't fix it now 😭. Also, primitive constructors should have a `new` keyword. String('foo') is the same as 'foo' (literal syntax), but *new String('foo')* is what I was talking about in the video.
4 роки тому
Np, you can perhaps add annotations.
@Fireship
@Fireship 4 роки тому
@ I would, but that's not possible on UKposts anymore.
@modolief
@modolief 4 роки тому
Yikes ...
@nirmalmattmusic3993
@nirmalmattmusic3993 3 роки тому
In a nut shell js is intuitive and crazy at the same time.
@Andrei-pq6qp
@Andrei-pq6qp 2 роки тому
I've been writing Javascript for over 9 months so I understand most of the stuff explained in these 3 videos, yet I can not stop watching they are gold. Entertaining and now I understand things that we're blurry in my head or I did not understand at all. Your channel is a gold mine. Keep it up!
@Robert-qq9em
@Robert-qq9em 4 роки тому
This is easily the most helpful JS video Ive seen. Many of the concepts Ive been struggling with you touched on, and none of the other JS videos Ive seen even cover JS structure like you do. Thank you for your work.
@d0m2288
@d0m2288 4 роки тому
Awesome video. Clear, concise, and informative, from your words to what you chose to display onscreen. I've been balls deep in Ruby on Rails for the last couple of weeks, and watching this really helped getting my JS brain to wake up. I'm looking forward to checking out more of your content.
@mel-182
@mel-182 4 роки тому
its nice to watch this kind of video when u're not in ur desk, resting, and just wondering about the world.
@gauthamnookala1776
@gauthamnookala1776 3 роки тому
This has to be one of the most fun, clear, concise videos that I have ever watched. Great job!
@mcvgs1780
@mcvgs1780 4 роки тому
I love the quality of these videos. It combines the humor and entertainment of media essays and commentaries and the objectivity of programming.
@dennisstasaski7136
@dennisstasaski7136 4 роки тому
I'm blown away by how high quality this channel is !
@undefinedvariable8085
@undefinedvariable8085 2 роки тому
Great stuff man! Would've been great if you touched on how the behaviour of hoisting compares with the traditional var keyword and the let and const keywords, specifically with regards to the "temporal deadzone". As a bonus, briefly touch on how mutating objects and array key value pairs affects references to those objects in memory - this still trips me up.
@9550raja
@9550raja 3 роки тому
The best thing that had happened to me after becoming a junior js developer, is finding this channel.. I'm learning a lot from you!! Thank you!
@miggu
@miggu 7 місяців тому
Your content is perfect: pace, humour , rigour , no wonder you're ranked as the best.
@manasmahanand732
@manasmahanand732 4 роки тому
Please put a disclaimer that this is not a beginners course, as most beginners would be highly overwhelmed by this (pun not intended).
@Fireship
@Fireship 4 роки тому
That's fair. This is more of a primer for concepts you should know eventually. The upcoming videos will revisit specific areas with more focus for beginners
@SocksWithSandals
@SocksWithSandals 4 роки тому
console.log(this); // "The Javascript Survival Guide"
@G3Number
@G3Number 4 роки тому
Fireship Thanks Thanks Thanks liked and subscribed!! Nice content! :)
@ArnoldsKtm
@ArnoldsKtm 4 роки тому
This is pretty much beginner stuff though...
@aaronbell5994
@aaronbell5994 4 роки тому
@@ArnoldsKtm Closures !== beginner stuff
@shibe89
@shibe89 4 роки тому
Great and extraordinary presented knowledge in just 15 minutes. Wow! Keep going! Just suggestion, I noticed that you are really good at using chrome developer tools can you make a video series about that maybe at some point in future?
@Fireship
@Fireship 4 роки тому
Great idea, that would make a good module for this course.
@fonncatalina6464
@fonncatalina6464 3 роки тому
I am new to JS and studied some fundamentals for a week ,this is a perfect revision for me! Thanks!
@48maliks
@48maliks 9 місяців тому
So glad I found this channel. Your videos are Gold mate!
@user-nx9he6fz7g
@user-nx9he6fz7g 4 роки тому
Thank you. A really comprehensive video, it filled many gaps I had. Waiting for the new ones!
@CubeAmaterasu
@CubeAmaterasu 4 роки тому
Bro this is the best coding channel I learn a lot in a really entertaining way. This makes me think University is truly dead
@Blame2a
@Blame2a 4 роки тому
Really good content. That is my only comment for the year 2019 but you really did a good job with editing and straight to the point explanation
@nehemiahalvarado1209
@nehemiahalvarado1209 4 роки тому
Very interesting, currently taking a web tech course and this helps further my understanding of Javascript. Thank you for the great work!
@stevecarter8810
@stevecarter8810 4 роки тому
As a long time developer who has not touched the web for 15 years this is the perfect bootstrap into JavaScript language. Thanks!
@Skellum82
@Skellum82 Рік тому
I always watch your 100 second videos. I watch this not realizing that this was your video and once the video was over, I thought to myself I’ve never heard anyone explain anything as good as you do and lo and behold it was fire ship this whole time you are a God amongst men.
@DuyenPhanLan
@DuyenPhanLan 2 роки тому
Thanks for a great video! I’ve learning JS for almost a month and I am trying to wrap my head around it when it comes to applying it to real world projects
@911madza
@911madza 4 роки тому
The relationship between predators and prey is often described as the balance of nature. While we must survive from the JS and its mutations - frameworks, it must survive from WA itself..
@cagri5886
@cagri5886 2 місяці тому
The explanation of the Closures and its comparison to the functions might be the best I have heard on UKposts
@zen-ventzi-marinov
@zen-ventzi-marinov 4 роки тому
Damnnn I love the sound effects, though comedic, with good mood still give you the chills!
@shivamjhaa
@shivamjhaa 2 роки тому
I have been doing JS for a few years now, but this video still clears some concepts. Cool!
@amithbhagat
@amithbhagat 2 роки тому
10:40 "Closures" and 12:40 "this". Very well explained 👍. Thank you 🙏.
@kemsekov6331
@kemsekov6331 2 роки тому
I've had from little to none experience in js but I understood everything from this video. Now I am feel a bit more confident about js.
@BlameItOnJoe
@BlameItOnJoe 4 роки тому
I'm an amateur coder and I've taken several courses, read several Medium articles, etc. but I had never seen a memorable and easy to understand explanation on var vs let/const till now. 👏👏👏 I just repeated to myself "var is bad; let is good; const is even better"
@JR-yi5wb
@JR-yi5wb 3 роки тому
BY FAR the best code tutorial on the entirety of UKposts. lol this video deserves some kind internet award
@uboat46
@uboat46 4 роки тому
Dude! You really make the best videos! This is awesome !
@ludo3941
@ludo3941 2 роки тому
I usually watch everything in at least 2x speed (more often than not around 2.5x). Today I had to watch this video in 0.75x the speed and keep going back and rewatching parts lol. The variables and functions parts were too many new and complex stuff for me (even with all the similarities to Python and C#, which are languages I have studied and used before). Amazing! Quite fun and different way to explain things, thank you!
@bennet615
@bennet615 Рік тому
dude I vowed never to buy a course but guess i gotta buy yours , your teaching just hits !!!!
@jameslemayian7610
@jameslemayian7610 4 роки тому
Pure awesomeness! I like the coherence! Keep it up! You got a new follower. I can't wait for the next.
@juliohintze595
@juliohintze595 4 роки тому
Your videos are awesome! Even some experienced devs can learn from them. Do you happen to learn something when you are making these videos or are you some kind of god that already knew all of this beforehand?
@Fireship
@Fireship 4 роки тому
This is episode 197, I knew basically nothing when I started. Just try to push each one a little further.
@viniricardoferrera
@viniricardoferrera 3 роки тому
Aways if a person asks if u r a God, u say so. " 'course I am. pff" Duuude... U r blowing it Lol! Thank you very much for such nice content.
@benjaminjameswaller
@benjaminjameswaller 4 роки тому
I'm pretty 'primitive' when it comes to this topic so either spelling works for me! Thanks Jeff! I really appreciate this beginner, back-to-basics course on JS. Love'n it mate!
@orinbay7742
@orinbay7742 2 роки тому
It's great that there are multy-hour courses on any-thiing you want. But I can't thank you enough for making this short, dence videos
@donekhan7183
@donekhan7183 4 роки тому
Hey brother, I would like to thank you so much for the amazing ways you explain complex things, I hope you can come up with fast tutorial for lodash library of JavaScrip, I've just started learning machine learning with javaScript, so that library is very important to mastery its functions to use them for converting maths algorithms to javaScript codes.
@LukePighetti
@LukePighetti 4 роки тому
I had no idea people still used lodash. What do you use it for?
@saurabhyadav-nu3mj
@saurabhyadav-nu3mj 4 роки тому
what resources are you using to learn ML with javascript. i'm also curious about ML,but not very keen to learn python for it.
@gregfletcher2360
@gregfletcher2360 4 роки тому
Fantastic video! Also that "A Few Good Men" reference was perfect 👌
@Fireship
@Fireship 4 роки тому
Thanks! That was a last minute addition
@iamilyes
@iamilyes 2 роки тому
Fireship and Honeypot are actual entertaining UKposts channels for developers... Massive respect for all the effort you put in the process of generating such content ❤️🚀
@funnyanimalworld7579
@funnyanimalworld7579 2 роки тому
Good explanation for those already into js .Making those abit harder concepts abit clearer.
@stickguy9109
@stickguy9109 2 роки тому
The times when I used JavaScript I mainly used Canvas API because making games is what's always got me interested.
@pashweetie
@pashweetie 4 роки тому
Finally things I can use that aren't elementary! Thanks!
@bennettfoley3018
@bennettfoley3018 4 роки тому
another fantastic lecture. looking forward to the next one!
@thejonte
@thejonte 2 роки тому
Somebody: "I hate your style of teaching for free on the internet" Fireship: *Hearted*
@SXCRD
@SXCRD 4 роки тому
Brilliant! Please continue with these videos. Well done.
@usamesavas9848
@usamesavas9848 2 роки тому
wow, how could you explain such complex stuff in such simple words. admirable
@VarunVerma
@VarunVerma 4 роки тому
The perfect video for a JS interview. Nice stuff.
@SandeepKumar-cx7cz
@SandeepKumar-cx7cz 3 роки тому
Hi do you work in js Please share your CV, if you don't mind work42sandeep@gmail.com
@Atheist-Nun
@Atheist-Nun 4 роки тому
I enjoyed this tutorial very much ... very entertaining and informative. Keep up the good work!
@MrStefanica
@MrStefanica 3 роки тому
Very good job! I'd recommend this video for higher than beginner JS programers or for programers coming from other languages. 🙂
@rostyslav5334
@rostyslav5334 4 роки тому
Wow, that was so good, Thank You so much, mate! Watching THIS 3rd time.
@richardcao2670
@richardcao2670 4 роки тому
Well done tutorial! It's super helpful and easy to understand. Thank you!!
@ssbrunocode
@ssbrunocode 2 роки тому
Thanks for the great content, specially the .call function is extremely powerfull once you understand 'this', really, thank you!
@ankitkaushikz
@ankitkaushikz 7 місяців тому
You explain in 14:46 Minute video what people takes 5 to 6 hours. Big Fan Fireship. Entertainment + Knowledge. Wish This video could be 1 hour long.
@clancy-sigal
@clancy-sigal 4 роки тому
Awesome video man! I really wish I had seen this video earlier even this is a bit challenging for beginners
@superclue
@superclue 3 роки тому
Nice and succinct. I prefer it this way where if I miss something I just go back 10 seconds or pause.
@sgmvideos5175
@sgmvideos5175 8 місяців тому
I liked javascript when I was learning it, possibility to do simple code and run it on any computer with browser, nice... but now I'm more experienced with it and I love it :D it's awesome language and yet so simple... if not using frameworks :3
@for41
@for41 2 роки тому
" what the hell is 'this'? " Your rhetoric in this video is on point. Bravo!
@auntiecarol
@auntiecarol 2 роки тому
This is gold for those who have some experience in other languages.
@Prestonepope
@Prestonepope 3 роки тому
Best JS overview I've seen. Thanks!
@Mohamedhassan-if8ww
@Mohamedhassan-if8ww 4 роки тому
Best Serie ever . i never thought that javascript was that complecated and easy at the same time
@BonjesBongo
@BonjesBongo 4 роки тому
I have no words to describe how amazing this video is. Thank you so much for making this art piece.
@Fireship
@Fireship 4 роки тому
Thank you Maverick!
@mwinetimothy3020
@mwinetimothy3020 4 місяці тому
You just make the learning so interesting. Thanks for the videos
@ranjeetsinghtharu5375
@ranjeetsinghtharu5375 Місяць тому
You rock Fireship!....learning curve is smooth...your videos are helful
@denns0r
@denns0r 4 роки тому
wow, awesome editing, nice speaker voice and very understandable 👍 keep up the good work 😃
@indiansoftwareengineer4899
@indiansoftwareengineer4899 3 роки тому
Ending is awesome.... loved your channel.
@lingkody3526
@lingkody3526 3 роки тому
I really enjoy your tutorials it's not boring 😂, can u make a tutorial on how you edit your tutorials? It's so simple yet entertaining
@michaelbarley8668
@michaelbarley8668 4 роки тому
Wow! You are an amazing teacher, I loved this
@hartnil93
@hartnil93 4 роки тому
Great video, like always. I also saw that recently in the youtube channell "demos with angular" they uploaded a video about adding nestjs for ssr with angular, can you do a video about that?, maybe even about how to deploy it into firebase clude functions, sound amazing to me. and thanks about the video!
@amit.deshmukh
@amit.deshmukh 2 роки тому
I never imagined I will binge watch programming tutorial
@Anson_The_Pro
@Anson_The_Pro 3 роки тому
Thank you for recommending this plugin. I imagine it would be very useful for predicting what "this" refers to
@GPT-X938
@GPT-X938 4 роки тому
Loving this video series!
@thedevilffs
@thedevilffs 4 роки тому
Thank you. I *finally* actually understand what a closure is.
@karimnaufal9792
@karimnaufal9792 3 роки тому
First time I understood closures 😂 Thank youuuuu 🙏🏻
@hamzac.4555
@hamzac.4555 3 роки тому
im gonna watch this video every morning, when you compared closure and object oriented, you won a medal, and + 1000xp
@edieltondantas6084
@edieltondantas6084 4 роки тому
👏thanks for the overview, quite helpful
@7921kenny
@7921kenny 2 роки тому
I appreciate the class analogy, that helped make js closures click for me 👍
@WolfrostWasTaken
@WolfrostWasTaken 4 роки тому
I feel like I can only understand and grasp fully the concepts shown in this video because I already have a solid grasp on JS (I started studying and using it many years ago and I still use it on a daily basis). Nevertheless, nice job on these! It's surely a cool way to recap all the things. But a newcomer should really go deeper into these concepts on his own
@key_michael
@key_michael 4 роки тому
You are the Web Developer Survival Channel!
@rne1223
@rne1223 4 роки тому
I love your editing man.
@phokgedimaja327
@phokgedimaja327 2 роки тому
It's good to come to the basics everynow and then. Fireship 🔥
@dsi-films1264
@dsi-films1264 3 роки тому
dangg, you deserve more subs :oooo amazing tutorial
@Hades5k
@Hades5k 4 роки тому
One can almost learn JS in less than 15 min here....!!! Great video ; )
@luis96xd
@luis96xd 4 роки тому
Great video, it was well explained and so intuitive! 😄
@mandaputtra
@mandaputtra 4 роки тому
This always usefull when you create game in javascript cause this is awesome
@goldflyknows
@goldflyknows 3 роки тому
Never have a been more happy about the ability to play videos at 3/4 speed.
@engineeringwithai
@engineeringwithai 4 роки тому
Absolutely loved this video. Favorite one. Should add some more memes
@SergioArroyoSailing
@SergioArroyoSailing 3 роки тому
beatiful! perfect overview and funny! :)
@LaughDonor
@LaughDonor 4 роки тому
Great video, but you misspoke when it comes to logical-and and logical-or operators. Both operators incorporate a short-circuit logic and can return the object itself. For example: 0 && 1 returns 0, and 1 && 2 return 2, not actually returning true or false.
@SandeepKumar-cx7cz
@SandeepKumar-cx7cz 3 роки тому
Hi do you work in js Please share your CV, if you don't mind work42sandeep@gmail.com
@soumadip_skyy_banerjee
@soumadip_skyy_banerjee 4 роки тому
Loved the intro! 💜
@ivansostarec6793
@ivansostarec6793 3 роки тому
man I love your memes in between explanations :D
@breakoutgaffe4027
@breakoutgaffe4027 Рік тому
This is tutorial heaven 🙌
@zyadyasser196
@zyadyasser196 4 роки тому
I love you man
JavaScript Function - What's your Function?
12:27
Fireship
Переглядів 178 тис.
My Bleeding Edge Tech Stack for 2025
8:43
Fireship
Переглядів 876 тис.
顔面水槽がブサイク過ぎるwwwww
00:58
はじめしゃちょー(hajime)
Переглядів 55 млн
ISSEI funny story😂😂😂Strange World | Magic Lips💋
00:36
ISSEI / いっせい
Переглядів 98 млн
Best OS for programming? Mac vs Windows vs Linux debate settled
8:41
God-Tier Developer Roadmap
16:42
Fireship
Переглядів 6 млн
STOP Using Classes In JavaScript | Prime Reacts
14:02
ThePrimeTime
Переглядів 208 тис.
You probably won’t survive 2024... Top 10 Tech Trends
8:56
Fireship
Переглядів 1,6 млн
Reacting to Controversial Opinions of Software Engineers
9:18
Fireship
Переглядів 1,9 млн
How programmers flex on each other
6:20
Fireship
Переглядів 2,1 млн
All The JavaScript You Need To Know For React
28:00
PedroTech
Переглядів 529 тис.
The ARM chip race is getting wild… Apple M4 unveiled
4:07
Fireship
Переглядів 732 тис.
Рекламная уловка Apple 😏
0:59
Яблык
Переглядів 787 тис.
Игровой ноутбук за 100тр в МВИДЕО
0:58
KOLBIN REVIEW
Переглядів 568 тис.
Игровой ноутбук за 100тр в МВИДЕО
0:58
KOLBIN REVIEW
Переглядів 568 тис.
Теперь это его телефон
0:21
Хорошие Новости
Переглядів 733 тис.