"Const variables allow an object sub-properties to be changed but not the object structure."
What means "object structure"? Because this code is compiling:
const numbers = [1, 2, 3]; // inferred to type number[]
numbers.push(4); // no error
May anyone give a compiling error of a sentence after declaring the const "numbers" in my example?