JavaScript: How It's Made

JavaScript: How It's Made

Fireship

5 лет назад

873,372 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Darko Gelevski
Darko Gelevski - 20.09.2023 00:38

Can you do similar video for c# and ts

Ответить
Zamin
Zamin - 19.09.2023 19:39

Dunno much about JavaScript but this course is super fun

Ответить
Khalid El-Gazzar
Khalid El-Gazzar - 03.09.2023 14:03

What's the name / url of the old documentaries about interpreter & compiler

Ответить
Nlk29
Nlk29 - 10.08.2023 14:05

I can awnser your thumbnail in two words: garbage and duct tape

Ответить
Aravind Narayanan
Aravind Narayanan - 06.08.2023 11:26

Ответить
lil deek
lil deek - 18.07.2023 23:41

Watched this like 4 times already and still didn't understand like 50% of the video.

Ответить
MereAYT
MereAYT - 11.07.2023 07:36

Thanks for keeping it conceptual. It is hard to find coding tutorials that don't immediately break out the IDE and dive into code minutia.

Ответить
Brett Clay
Brett Clay - 26.06.2023 02:13

I've been learning java script theory for a few days and with lots of pausing I understood all of this.. Yay😂

Ответить
Singtingz
Singtingz - 18.05.2023 01:44

It's wild coming back to your older videos and how your voice and style have progressed

Ответить
Tibebe Tech
Tibebe Tech - 16.05.2023 19:01

Perfect!! Thank you !!!

Ответить
DJ
DJ - 08.03.2023 14:44

Me making notes and enjoying like a movie

Ответить
Eduard Van Den Heever
Eduard Van Den Heever - 20.02.2023 10:10

I just recently found your videos and I find them both immensely helpful and entertaining. I love the memes!😆Thank you very much.

Ответить
Francisco Eugênio Romanini Nabas
Francisco Eugênio Romanini Nabas - 17.02.2023 04:50

My fear is not js being to overwhelming to understand. My fear is the whole web built using it.

Ответить
Patrick -
Patrick - - 10.02.2023 11:05

Java​script​ing​ just​ must​ actknew is​ bigs​ is​ bound​ C++, Cgi code​ to​ Javascript.

Ответить
Lupus
Lupus - 24.01.2023 20:14

What is the song at the end?

Ответить
Refrence JoJo Wait
Refrence JoJo Wait - 18.12.2022 17:31

high-level
single-threaded
garbage-collected or just-in-time compiled
prototype-based
multi-paradigm
dynamic language
with a non-blocking event loop

Ответить
Entropy as a Service
Entropy as a Service - 11.12.2022 19:54

Is this the new Turbo Encabulator?

Ответить
Tyler Myers
Tyler Myers - 24.11.2022 04:38

you gotta make a shirt/hoodie that says "high-level single-threaded garbage-collected interpreted of just-in-time compiled prototype-based multi-paradigm dynamic language with a non-blocking event loop"

Ответить
FuzzyBear
FuzzyBear - 07.11.2022 00:35

Roll that programming rap baby

Ответить
niksatan
niksatan - 25.10.2022 18:52

i don't know this, it is very hard :(

Ответить
Andy The Dishwasher
Andy The Dishwasher - 17.10.2022 14:31

While I agree you don't need to know this stuff to build cool things in Javascript, I would add that this stuff helps a lot when you're trying to get other languages to play nice with Javascript. Rules matter more when there is more than one set of rules to account for.

Ответить
Francis Roberts
Francis Roberts - 14.10.2022 14:55

Wow I won't even mention the number of times I replayed that intro! AWESOME!

Ответить
g4meboy13
g4meboy13 - 14.10.2022 08:25

I never had a reason to ever learn to code but as of late I've been looking into it and Javascript is the first coding language that really has me interested in learning it well. Don't understand shit but I'm eager to come back one day and re-watch it knowing half of the things

Ответить
LoreEatKids
LoreEatKids - 07.10.2022 20:19

i love this channel

Ответить
Charlie Sparks
Charlie Sparks - 06.09.2022 01:12

This was excellent; nice work!

Ответить
tim hansher
tim hansher - 01.08.2022 20:59

classic

Ответить
KANAMEMADOKA dot NET
KANAMEMADOKA dot NET - 17.07.2022 05:14

omg no one ever explained to me th task queue n stuff every javascript tutorial or course i ever did just left me confused n baffled but this is different! u know ur stuff n it shows n i understand everything quickly! ill b follllowing th rest of ur course :)

Ответить
Dmitry Kozlov
Dmitry Kozlov - 16.07.2022 09:44

StackOverflow 😂😂😂

Ответить
Braden Best
Braden Best - 15.07.2022 01:36

dynamic weak typing doesn't mean types aren't specified (what you're thinking of is inferred typing, which is the opposite of manifest typing which is what langs like C have). Dynamic means types are checked at runtime (as opposed to at compile time as is the case with static typing), and weak typing means that the language is more permissive when it comes to implicit type conversions. So in C, as it is weakly typed, you can, say, take the result of malloc and store it in a typed pointer without specifying a type conversion, and the compiler will happily do it with no complaints. C++ is strongly typed and doesn't allow implicit void pointer conversions, which is why the same exact program will raise a compile error.

But JavaScript uses a special type of weak typing which you might call "super weak typing", but the rest of the world calls it duck typing. If it looks like a duck...it's a duck. Doesn't matter that it's a pigeon vaguely in the shape of a duck and obviously not a duck, 1 == "1" will evaluate true, because it "looks like" a duck. Duck typing is the source of a lot of JavaScript's jank.

Ответить
Juan H
Juan H - 08.07.2022 06:14

This is excellent material.

Ответить
David Kim
David Kim - 16.06.2022 11:37

You talked javascript like I've never learned. But I've been in the business for over 20 years. These Information overwhelms me.

Ответить
Sachin Singh
Sachin Singh - 15.05.2022 22:54

you are GOD

Ответить
Rezic
Rezic - 03.05.2022 23:28

The cartoon used is from the 1983 show Bits and Bytes

Ответить
Andy The Dishwasher
Andy The Dishwasher - 27.04.2022 22:45

I would like to learn more about how the data types become known at runtime. That's the main thing that has confused me so far in my js ventures.

Ответить
Gavin Coulson
Gavin Coulson - 27.04.2022 15:02

Awesome video.

Ответить
Thiago Elav
Thiago Elav - 26.04.2022 02:22

i feel like your videos is biscuits for the brain

Ответить
sunny mishra
sunny mishra - 24.04.2022 21:15

Really Great Video

Ответить
Glow0110
Glow0110 - 18.04.2022 10:44

Really cool video. Shows me just how much I need to learn haha. I dream of being able to rattle of this stuff like you do with ease. But key point at the end if to just start learning/building.

Ответить