javascript interview question | JS Constant | const

Опубликовано: 06 Октябрь 2024
на канале: 404developer
6
2

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