code review: you can mutate a const or should that be var/let? 😅
Discussion
Const means you can't replace the object pointer by anything else, but you can still modify the contents of the object.
code review: you can mutate a const or should that be var/let? 😅
Const means you can't replace the object pointer by anything else, but you can still modify the contents of the object.