Day 6: JS varibles

Dan Esmail - 1/6/2023

Intro

Today has been a lot longer than I thought with work and helping out family there isn't much content for the site today just a lot of research for JavaScript. I'm going to go over some of the stuff that I learned since I have been diving in When I learned JavaScript it was all about Var to set your variables. But now there are two new ways to set a variable that being let and const. both can't be re declared within the same scope. Next the variables don't get hoisted. This is nice since it make it so that you have to declare a variable before using it. Lastly const cannot be changed within the program.



Day 1

Day 1