Imagine having a class with two methods declared for exclusive use within that class.
// 1.
private get something() { return 0; }
// 2.
private getSomething() { return 0; }
While I am familiar with getters and setters, I'm intrigued to know if there is any distinction in this scenario.