Tag: immutability


  • Overview A constant is an identifier for a value that cannot be modified during the execution of a program. Once a constant is assigned a value, that value remains fixed. Core Concepts Immutability: The core property of a constant; it prevents accidental changes to data that should remain static. Naming Conventions: Often written in SCREAMING_SNAKE_CASE…