I recently started learning AngularJS using the Google documentation, and I ran into a notation I am unfamiliar with.
The general syntax that I am confused with is as follows:
someObject(someParams)
.SomeFunction()
.SomeFunction()
.SomeFunction()
The problem is that typically I am used to seeing
SomeObject.someFunction()
SomeObject.someFunction()
SomeObject.someFunction()
Can someone please clarify what is going on here? Am I missing something? If it helps at all, I teach Java Programming and am very good with C# and Java so maybe that can help someone gear up an answer for me.