code review: you can mutate a const or should that be var/let? ๐
Login to reply
Replies (1)
Const means you can't replace the object pointer by anything else, but you can still modify the contents of the object.