Rem on const

You can modifiy the content of a non-reassignable variable (const)
const a = [7,4,3];
a[0] = 8; // OK
a[1] = a[2]+4; //OK
a[12] = -4; //OK - array are dynamically reshaped
// a = [4,2,3] Incorrect (re-assignement)
37/41