LearnJavaScript TutorialJavaScript Variables

JavaScript Variables

1 min read

Variables

Declare variables with let, const or (the older) var.

let name = "Alex";
const PI = 3.14159;
let age = 25;
  • Use const when the value won't change.
  • Use let when it will.
  • Avoid var in modern code.