The 'const' declaration is used to define local variables within a specific block. Constants are unchangeable through reassignment with the assignment operator, but if a constant represents an object, you can still modify its properties by adding, updating, or removing them.
#javascript #typescript #developer #interview