Nilai Konstan JavaScript

Constant values can be mutated, they just can't be reassigned

const arr = [1,2,3]

// doesn't work:
arr = [1,2,3,4]

// works:
arr.push(4)
QuietHumility