Skip to content Skip to sidebar Skip to footer
Showing posts with the label Private Members

Javascript: Should I Be Hiding My Implementations?

As a C# programmer, I have a bit of a habit of making things private that can and should be private… Read more Javascript: Should I Be Hiding My Implementations?

Make A Property That Is Read-only To The Outside World, But My Methods Can Still Set

In JavaScript (ES5+), I'm trying to achieve the following scenario: An object (of which there … Read more Make A Property That Is Read-only To The Outside World, But My Methods Can Still Set