JavaScript var, let, and const explained

  Рет қаралды 24,157

Kevin Powell

Kevin Powell

Күн бұрын

Пікірлер: 118
@fred02495
@fred02495 4 ай бұрын
const until you can't
@GS7999
@GS7999 4 ай бұрын
Well said buddy.
@danj8404
@danj8404 4 ай бұрын
Fully agree
@Mr.RobotHead
@Mr.RobotHead 4 ай бұрын
Yup, and just about any linting config will say the same.
@Dorchwoods
@Dorchwoods 4 ай бұрын
Yup, and then use let :)
@chyldstudios
@chyldstudios 4 ай бұрын
Const should always be the default.
@justingiovanetti
@justingiovanetti 4 ай бұрын
As per your first example, without var, variables are puts into the global space. Clearly different than using var. var is function scoped. Your example just happens to be in a global space.
@yogibarista2818
@yogibarista2818 4 ай бұрын
Although they exist, there are very few situations where you would NOT want variable scoping - I changed var to let in all of my legacy code, and I think I can count on one hand the number of times it needed to remain var.
@benzflynn
@benzflynn 4 ай бұрын
Leave JavaScript to others, Kevin, if this is your goto guy. It's nuts to use *let* unless its flexibility is needed: never give a system more entropy than it needs. Makes far more sense to use *const* for all Object types in JS, this includes collections of any type, primitive or Object. And for primitive types ask yourself if this thing is ever going to change . . . if so, use *let* and otherwise use old *const* again. To hell with *var*
@danj8404
@danj8404 4 ай бұрын
I agree with the comments and disagree with the host. const unless need to be let. and 'var' is just bad No thumbs up. A first time for when I watch videos on this channel.
@heinzerbrew
@heinzerbrew 4 ай бұрын
He's not the host. He's the guest. But you should know that since you have watched the channel before.
@CristianKirk
@CristianKirk 4 ай бұрын
I use const for constants and var for variables :D By the way, I fully support JS content on this channel. (Pure JS, not that crap from frameworks).
@lukerazor1
@lukerazor1 4 ай бұрын
I think const vs let should reflect the intent of the code, do you want it to change or not? Plus if one of my developers tried to commit code that relied on the fuzzy nature of var to work I would tell them to rewrite it so it didn't
@montebont
@montebont 4 ай бұрын
My thoughts exactly...
@scottborrowman
@scottborrowman 4 ай бұрын
I, personally, prefer const over let and only use let if I need the variable to change within a single iteration of the function. I tend to set up const with a ternary if I need it conditional different for that single iteration but will always be that value for that iteration.
@deatho0ne587
@deatho0ne587 4 ай бұрын
Never let your ternaries get out of hand. If it is more than one ? & a : then it most likely to complex to read in another month. I agree with you for the most part though.
@scottborrowman
@scottborrowman 4 ай бұрын
@@deatho0ne587 Yup. Usually a rare case a const can have more than 2 options, though. And if it does, it usually means you need more variables to break down everything that is going on.
@deatho0ne587
@deatho0ne587 4 ай бұрын
I agree with you. Just do not want people doing something that can be hard to maintain.
@ripwolfe
@ripwolfe 4 ай бұрын
I always use 'const' by default. I've found over the years that if I feel compelled to use 'let' it's usually an indicator that my code might not be as robust as it could be. I'll never understand the "let" is two letters shorter argument. Any "savings" you gain from typing two fewer characters is swallowed up by host of other work that you need to do as a developer. No one is counting your keystrokes (at least, I hope not).
@cmpc724
@cmpc724 4 ай бұрын
Elon probably is 😂
@dankierson
@dankierson 4 ай бұрын
Lots of situations where a variable is changing value, e.g. the index number of the current slideshow image, strings like page-state , booleans like a cycling indicator on an animatable/off part of a web page. There will be a *let* - it must be 🎹
@ripwolfe
@ripwolfe 4 ай бұрын
@@dankierson Take a look at declarative and functional programming paradigms. JS isn't a fully functional lang, but it's close enough that you can refactor a lot of imperative code in ways that greatly reduce the use of 'let'.
@benzflynn
@benzflynn 4 ай бұрын
@@ripwolfe And we all do, Wolfe. But we can't remove it entirely. Besides, where's the harm in *let* ? It's not *var* we're talking about here. Storm in a cawfee cup for Chrissakes.
@jozzetv
@jozzetv 4 ай бұрын
i also go the always const route. But another way someone could do it, is just use their let and then let the linter decide at the end :D If the variable is not changed, let it replace your lets with const.... would also be a solution. But id rather do default const.
@NamVu-im2xm
@NamVu-im2xm 4 ай бұрын
Seeing var in my old company code gives me anger
@kacperkonieczny7333
@kacperkonieczny7333 4 ай бұрын
My approach: Is it a object? Yes - const No - Can it change at runtime? Yes - let No - const The only place I use var for are closures which are like objects with private properties. Also I don't 100% stick to this approach. I sometimes use var for the things declared in the few first lines globally and sometimes I change a variable into a object in those lines without making it a const, which I should not do.
@TomasMisura
@TomasMisura 4 ай бұрын
To be honest, I'm still experimenting with variables like const, var, and let, regardless of the number of courses I've taken and videos I've watched. It seems to me it's somewhat of a trend; I use const or var based on my current mood.
@Turabbo
@Turabbo 4 ай бұрын
Another really fun one dude! I do interviewing for my job and if I was to offer some unsolicited advice; a few more affirmation noises from you would really help ease the tension in these guest videos. Whenever you nod and smile, pairing it more frequently with a sound like "ahh", "uhuh", "got it!" goes a long way to keep you present in the dialogue and confirm to the guest subconsciously that this is still a conversation. They're a guest after all, so we're watching two people not one. Additionally, looking directly into the lens is lovely when you're just addressing us, but you'll notice that none of your guests do that. They're always looking at you, but slightly off to the side. This is just standard learned body language for video calls, so if your guest is doing it, you should probably mirror it. And I really love when you interject to clarify things it's really helpful.
@Nitrxgen
@Nitrxgen 4 ай бұрын
I'm glad Kevin doesn't repeatedly vocalise acknowledgement on points, I feel like once I start noticing that it will become too distracting and I'll keep thinking to myself "Dude shut up and just let him talk." Although it's a guest video, I don't think it's meant to have an interview theme. I'm personally more focused on the delivery of raw information than the video presentation surrounding the content delivery. I've been a interviewee a number of times in programming roles with non-technical interviewers and feel like I get discriminated against because I'm not that social, I'm a quiet person, I'm not an open book, I'm very privacy-focused, I'm conservative and keep personal traits to myself, but I do know how to program and am very confident with it, but tend to have difficulties with interviews so I don't think making a video like this interview-focused is relatable or a good idea at all.
@heinzerbrew
@heinzerbrew 4 ай бұрын
He's constantly noding it's annoying. If he added even more sounds too; I would be driven insane.
@pandaclouds650
@pandaclouds650 4 ай бұрын
can you do a tutorial about NPM? i've been searching a npm tutorial but almost are 5yrs ago, and i cant follow it cause its not updated.
@deatho0ne587
@deatho0ne587 4 ай бұрын
Typescript - const arr = [...] as const; none mutable array.
@nomadshiba
@nomadshiba 4 ай бұрын
8:40 especially with ts, or jsdoc comments, its better to use const, because `let`s says value can change and typescript acts like it can change too, making your life harder.
@stevenstraker5105
@stevenstraker5105 4 ай бұрын
After working with languages like C and C++, I started thinking of variables as pointers of memory storage, rather than value storage. With that mindset, const is a constant reference to a memory pointer that can't be reassigned, but object properties/qualities stored in the pointer can be altered. This explains why arrays and objects (and scalar prototypes) can be changed, but scalar values cannot. I also subscribe to const primarily, but I'm generally biased towards OOP, where most variables I work with are objects anyway, so I make very limited use of let. An example of such limited use is with traditional for and while loops, though for arrays of objects, using const (for const x of y {...}) is just fine.
@lougarcia36
@lougarcia36 4 ай бұрын
I'm not entirely sure why it is hard to use "const" most of the time and use "let" when you need it. I just don't get it.
@kacperkonieczny7333
@kacperkonieczny7333 4 ай бұрын
I guess muscle memory and not planning out what certainly won't change at runtime and what can, which is bad cause you as a programmer should have at least a rough idea of it
@heinzerbrew
@heinzerbrew 4 ай бұрын
RSI, those two extra letters will destroy your wrists.
@bobmonsour
@bobmonsour 4 ай бұрын
Thanks, Kevin! This has been an open tab since it came out. Finally watched it. Chris is so very good at these kinds of explanations. This one was very helpful.
@mudyeet_
@mudyeet_ 4 ай бұрын
I thought we would talk about hoisting here :(
@hsvandrew
@hsvandrew 4 ай бұрын
I was hoping this video would start with “hello my backend friends” 😂
@DocGenius42
@DocGenius42 4 ай бұрын
it's still frontend though
@liannotti2
@liannotti2 4 ай бұрын
Be careful what you wish for. Kevin will be trying to teach us PHP next.
@feldinho
@feldinho 4 ай бұрын
To me, const is the default not because it is special, but because let is. I use let to let others know that the value is going to change down the line.
@eksperiment6269
@eksperiment6269 4 ай бұрын
A small thing that also differs with these, is when a variable is declared in the global scope. If you are using var globally, that variable will attach to the window object, meaning you can access it by window.myVariable. let and const doesn't do this. That means, that should you be in the quite specific scenario of having to access the global variable by string, like this window["myVariable"], it can only be done with var. It is a quite narrow scenario, but I have come across the need of it myself.
@kacperkonieczny7333
@kacperkonieczny7333 4 ай бұрын
and also if you don't use var/let/const to declare it (though then if you're using strict mode it will throw error). It will be like writing window.myVariable
@germantoenglish898
@germantoenglish898 4 ай бұрын
I ❤const
@montebont
@montebont 4 ай бұрын
Nice intro. Opinionated. But hey...aren't we all ;-) Just a few things: You _should_ but do not need to declare a variable. That is how 'global' jQuery ($) and Underscore (_) work. In general this is a good approach for global utility libraries. Scoping has its uses but so do global variables or functions. You can not re-assign a new value to a const. But if it is an object you still can add key-value pairs or modify the value of any key. If you do not want that (say for lookup tables with constants) you can 'freeze' the const. So: nice helpful intro...thanks for sharing. But IMHO it is slightly more complicated - apart from programming style ;-)
@Flexximilian
@Flexximilian 4 ай бұрын
It's mind boggling to me how so many people, _especially_ tutors, present const as being "strange" or "incomplete" because it does not change the inner behavior of a class, object or function (in particular mutability of inner state). It would be _weird_ if it did. The only explanation I have for this is that such folk have never understood values vs. references in the first place, and consequently have no idea of basic OOP concepts. Or they _do_ understand the difference between values and references, but whine about _having to_, or to have to teach it. Imagine there was no way to do the opposite, if you'd have to use "let" or "mutable" to be able to manipulate an array once you assigned it. Imagine a buffer would either be externally mutable _and_ reassignable or unmutable and non-reassignable. LOL. But that is what folks that find the meaning of const "strange" or "incomplete" imply would be "more correct" or "complete". So please! Just stop even suggesting to beginners that the const behaviour is -- in any way -- strange or incomplete or weird or odd. In fact teach them how and why it is _not_!
@FurryDanOriginal
@FurryDanOriginal 2 ай бұрын
As a developer who strongly prefers the functional paradigm, it's save to say that my opinions often times differ with Chris', but I always enjoy watching him and gaining insight on what other developers may lay value on. I also appreciate how he seperates facts from opinions and lays them out very clearly.
@TheMetalMag
@TheMetalMag 3 ай бұрын
the issue is every teachers don't tell you the same thing; they say don't use Var cos it's for Java! then you see videos on utube with people using Var everywhere...then others will use const everywhere..so once again this is confusing and seeing Kevin noding like he understood everything makes me wonder, what will he use if he writes javascript?!
@JamesWelbes
@JamesWelbes 4 ай бұрын
12 minutes? Tl;dw Don't use var If it can change use let If it can't change use const
@ClarkeDesign
@ClarkeDesign 4 ай бұрын
I use IntelliJ for all my coding, and it always likes to replace var with let or const. Is there anytime where var would still be useful?
@KevinPowell
@KevinPowell 4 ай бұрын
Generally, no. The actual use cases are so niche, I wouldn't even worry about them
@kacperkonieczny7333
@kacperkonieczny7333 4 ай бұрын
Only thing that var is useful for are closures and they can be mimicked with a objest created from a class that has private properties. So most of the time you don't need it
@benzflynn
@benzflynn 4 ай бұрын
@@kacperkonieczny7333 Please elaborate as I use closures a lot and never saw any need or advantage for a *var* there.
@pamelatrucsas97
@pamelatrucsas97 4 ай бұрын
And you can declare a var in a function and change its value in another function, right? (which you can"t do with let)
@travman162
@travman162 4 ай бұрын
I'm all for being a lazy developer, but using 'let' instead of 'const' because it's easier to type is a wild take. Probably the canary in the coalmine of generally not great code.
@ksaenable
@ksaenable 4 ай бұрын
Just wanna say how great of an explainer Chris Ferdinandi is. I purchased some of his courses and they were the only ones that really clicked for me in understanding JavaScript. Even sometimes when I hit a barrier of knowledge, Chris's site is my first go-to to check if he has a Blogpost or course about it.
@danielgago-sk
@danielgago-sk 4 ай бұрын
And the best part is - Programm works even without let, var, or const... 😊 variable= value;
@Linuxdirk
@Linuxdirk 4 ай бұрын
I’m using const since some time now. Even for defining functions. To me it makes the behavior much more predictable!
@ce9916
@ce9916 4 ай бұрын
I unsub'ed from Chris' newsletter after a few emails where he started talking politics. Keep that toxic sh*t out bro.
@LethalLuggage
@LethalLuggage 4 ай бұрын
In that example with wixard and item... Let also shouldnt work becauae item is already defined?? You cant access the inner one once it ends but inside the inner one you can definitely access the outer one...
@CarlosHernandez101400
@CarlosHernandez101400 4 ай бұрын
I use const when I'm defining html elements with querySelector. What I think development comes down to is: programming is a language, and everyone has an accent. Your accent might be a refined English accent (think Patrick Stewart), while someone else might "sound" like Hank Hill. Personally, my accent would be similar to the cross-eyed guy from "The Waterboy."
@KevinPowell
@KevinPowell 4 ай бұрын
I like that analogy! Though no need to be so hard on yourself 😂
@arifurrahman9133
@arifurrahman9133 4 ай бұрын
Kevin we want you teach us JavaScript also . Thank you kavin
@pappapez
@pappapez 4 ай бұрын
You should bother to think about whether your variable will change.
@ultratacoRX7
@ultratacoRX7 2 ай бұрын
i'm old and grumpy and still use var for everything.
@niza.toshpulatov
@niza.toshpulatov 4 ай бұрын
It would cool to mention that you can achieve array or object immutability using `Object.freeze`. This is especially handy for enums. Just note that freezing is not deep, i.e. it doesn’t protect nested objects.
@montebont
@montebont 4 ай бұрын
You can prevent that with good (1d) data structuring ;-)
@florentd.5817
@florentd.5817 4 ай бұрын
There are betters channels to learn and understand Javascript (same for css).
@JosephCodette
@JosephCodette 4 ай бұрын
A big thing not mentioned is that var can be hoisted from anywhere in the code , which can cause issues , that’s why let is there . Const does not make sense in JavaScript, because it is not really a constant as it would be in other languages . I think of const as a good motivator / indicator to be mindful of where and when you declare a variable.
@stevenstraker5105
@stevenstraker5105 4 ай бұрын
I'd say the constant part of const is a reference to the pointer of the variable than to the contents of the variable. Ie. If const x = { name: "bob" }, then the pointer reference of that object is stored to x, and a pointer to a separate object (say { name: "sally" }) cannot be set to x. However, you can update x.name = "sally", because the pointer of the variable is not changing. { name: "sally" } !== { name: "sally" }
@CirTap
@CirTap 4 ай бұрын
bundlers and transpilers still convert `let` and `const` into `var` and also move the declarations if necessary.
@montebont
@montebont 4 ай бұрын
Example? I never noticed this...
@sergioalcantar3290
@sergioalcantar3290 25 күн бұрын
is item a variable within the var variable... lost...
@dancarter6044
@dancarter6044 4 ай бұрын
use var wizard, not var item stupid mistake
@justdude2599
@justdude2599 4 ай бұрын
last thing i expeceted to see on this channel lol
@robkom
@robkom 4 ай бұрын
I'm a "lazy developer" too, but that means setting up tools and automations to do boring / repetitive tasks so then I never have to waste time thinking about it. My IDE, ESLint, and Prettier take care of automatically catching and updating let and const declarations. Also, you absolutely should worry about variables changing, that's part of building software. And if you don't want to think about it, then defaulting to const makes more sense; if the variable shouldn't be re-assigned, you're good. If the variable should be re-assigned, then your IDE/linting/build-tooling will let you know and you can update it.
@rafa6536
@rafa6536 4 ай бұрын
thanks nerds :)
@moneyfr
@moneyfr 4 ай бұрын
Could you do video on overlaping
@Andris_Briedis
@Andris_Briedis 4 ай бұрын
The missing info is that "var" was the only variable type for a long time and now it is practically left in JS only for compatibility with the older code. Not for use in new codes.
@montebont
@montebont 4 ай бұрын
Good point...Var comes from the days of Windows XP...
@Andris_Briedis
@Andris_Briedis 4 ай бұрын
@@montebont "var" comes long before WinXP. G: "JS type "var" since when"
@MrRAHUL7777777
@MrRAHUL7777777 4 ай бұрын
One more important aspect regarding var ,let &const is var can approach to global scope results in memory consumption while deallocating after execution
@michaelbeaver8281
@michaelbeaver8281 4 ай бұрын
Well we need two more; int and float
@VirendraBG
@VirendraBG 4 ай бұрын
Kevin with JS ❤
@sicfxmusic
@sicfxmusic 4 ай бұрын
var reading this comment section be like: "Time to go rogue" 🤨🤨
@itsPenguinBoy
@itsPenguinBoy 4 ай бұрын
I have never had any training so I found 'var' easy to remember and use it everywhere and rarely had any problems and when I do, I use const. But it's good to have a proper explanation!
@Rhysling2
@Rhysling2 4 ай бұрын
Great video. Thank you!
@arifurrahman9133
@arifurrahman9133 4 ай бұрын
I am happy u teach us JavaScript now
@DylanArcher
@DylanArcher 4 ай бұрын
Glad you two got together finally!
@mverma7845
@mverma7845 4 ай бұрын
Thanks Kevin for the video
@juliusuwuigbe3274
@juliusuwuigbe3274 4 ай бұрын
Javascript finally!
@pendaco
@pendaco 4 ай бұрын
The biggest crime here is not 'var' but using light mode in his editor 😮
@Arunnn241
@Arunnn241 4 ай бұрын
As someone who dabbles in web dev, I find this video to be lazy content. Sure, the title basically attracts beginner developers but there's nothing here in 12 min that isn't in a 60 second Fireship video. There's not a lot of value in the explanation or examples either. The basic yet incredibly key piece of information that the guy does not state explicitly is that `const` does not allow *"reassignments"* which is a really important concept in computer science and more specifically memory management and leads nicely into an explanation on why `const` was introduced when `let` had already existed, why it's actually not strange pushing to a const declared list and why one might want to use `const` instead of `let`.
@awkward_coder
@awkward_coder 2 ай бұрын
Thanks!
@KevinPowell
@KevinPowell 2 ай бұрын
And again!
@rameenana
@rameenana 4 ай бұрын
Thank you both.
@vibalciunas
@vibalciunas 4 ай бұрын
Lots of talk and not a word about performance. When 'var' is converted to bytecode, the scope check procedure call is skipped, so it's faster than 'let' or 'const'.
4 ай бұрын
"Worry about the performance of your code when and if your code has a performance problem." The difference is neglibile in the vast majority of cases.
@montebont
@montebont 4 ай бұрын
It also helps memory management...
@AhmadNasriya
@AhmadNasriya 4 ай бұрын
const should always be used unless absolutely necessary to use let. It's much safer that way. If a developer who works for me told me he uses "let" instead of "const" because of the excuses you've just given, I'd fire him immediately. Your guest is not the sharpest, Kevin, and a terrible choice to invite. You should not have published this video.
@lawrencepsteele
@lawrencepsteele 4 ай бұрын
Thank you! One of the things about being full stack (hardware-db-middleware-backend-frontend) is you embody "Jack of all trades, master of none." I often wondered why the three declaration types but never took the time to explore. Funny that I find out after I retire.
@daveklassen7052
@daveklassen7052 4 ай бұрын
@@SW-fh7he When I started working with JS, Let was not part of it, in fact I have not used much JS since Let became part of it, since JS is not part of my normal stack these days ... so I can see why someone that is retired now may not have considered it much.
@amekudzilab
@amekudzilab 4 ай бұрын
Love this
@Metalvain4
@Metalvain4 4 ай бұрын
Love these shorter gap closing videos! Keep up the great work, Kevin!
@Arunnn241
@Arunnn241 4 ай бұрын
If you're looking for short videos with good examples that deliver a good amount of information, might I recommend Fireship's videos and shorts.
@115switch
@115switch 4 ай бұрын
let as the deafult ? Smh Someone call the FBI
@ray73864
@ray73864 4 ай бұрын
The problem with 'let' as the default is that I as the user, can now also change the value. Which means if you have forgotten to validate everything on the backend before it goes into the database, the user wins. I am in the 'const as default' camp. Also, don't think of it as 'changing the variable' think of it as 'overriding the existing value of the variable with a new value'. Let lets you override or replace the existing value with a new one, const does not. Once you think like that, it becomes obvious why arrays work with const. Also note that Javascript isn't the only one that lets you manipulate a const array, other languages allow it too, so Javascript in this instance is just following the norm. One of the few languages that won't let you define an array as a const is 'C#', you have to define it as readonly there.
@hoshi411
@hoshi411 4 ай бұрын
thanks for this. I've wondered this for a long time.
@dionisii93
@dionisii93 4 ай бұрын
real men only use var
@daveklassen7052
@daveklassen7052 4 ай бұрын
real men only use binary ...
@gajukumar456
@gajukumar456 4 ай бұрын
Make a video on responsive design
We can now transition to and from display: none
21:20
Kevin Powell
Рет қаралды 103 М.
Write less code with these 5 CSS tips
15:38
Kevin Powell
Рет қаралды 47 М.
How To Get Married:   #short
00:22
Jin and Hattie
Рет қаралды 23 МЛН
when you have plan B 😂
00:11
Andrey Grechka
Рет қаралды 67 МЛН
GIANT Gummy Worm Pt.6 #shorts
00:46
Mr DegrEE
Рет қаралды 102 МЛН
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
The different types of JavaScript functions explained
14:47
Kevin Powell
Рет қаралды 41 М.
#38. How to use Var, Let and Const | JavaScript Full Tutorial
8:50
Avoid these 5 beginner CSS mistakes
21:38
Kevin Powell
Рет қаралды 84 М.
23 CSS features you should know (and be using) by now
31:31
Kevin Powell
Рет қаралды 75 М.
Astro makes websites faster & easier to build
22:55
Kevin Powell
Рет қаралды 122 М.
Relative colors make so many things easier!
13:16
Kevin Powell
Рет қаралды 49 М.
Differences Between Var, Let, and Const
8:37
Web Dev Simplified
Рет қаралды 190 М.
Top 10 CSS One Liners That Will Blow Your Mind
13:34
developedbyed
Рет қаралды 962 М.