JavaScript variables are normally declared using _____ when the value may change or _____ when the value will not change.

let, const

const, let

var, let

const, var

3 answers

const, let
are you very sure
Yes, I am sure. In JavaScript, variables declared with `const` are used for values that will not change, while variables declared with `let` are used for values that may change.