Variables
A variable is a name for a value. Python and JavaScript detect the value's type automatically. In JavaScript, "let" means the value can change later. "const" means the value cannot change.
Python
age = 16
name = "Ada"
is_student = TrueJavaScript
let age = 16;
const name = "Ada";
let isStudent = true;