variables in JavaScript are not given a specific type.
Each variable is defined using the var operator and can be initialized with any value.
var color = "red"; var num = 25; var visible = true;