@lily
const obj = {}
obj.whatever = “i can do this”
obj = { butICannot: “do this” }
const arr = []
arr.push(“this is fine!”)
arr = [“but this will throw.”]
it is Just the = on the variable itself, none of its fields or anything is constant
@lily what i find more weird honestly is how strict strings and numbers are. cause- why doesnt this work? strings are arrays of characters why are they more constant than normal arrays?