Ever wondered how to prevent your code from mutating object properties whose values should never change? I know what you’re probably thinking, why not just use a const keyword to declare the object? well, doing it that way would only prevent the variable itself from being mutated and not the…