P3.1: JavaScript Basics & Variables
JavaScript is the programming language of the web. It controls the interactive behavior of websites.
JavaScript is the programming language of the web. It controls the interactive behavior of websites.
Lesson: p3-1-basics
JavaScript is the programming language of the web. It controls the interactive behavior of websites.
Modern JavaScript uses let and const to store variables:
const (Constant): Sourced for variables that should never change.let: Sourced for variables that will be reassigned.var: It has outdated scoping behaviors."Hello"42, 3.14true / false