# IT:Angular.JS:HowTo:Understand/Binding to Arrays # * [[../|(UP)]] {{indexmenu>.#2|nsort tsort}} In [[IT/AD/Angular.JS/HowTo/Understand/The Basics]] we already touched on the basics of binding to arrays. ## Notes ## A recap of where we got to: * Arrays can be Filtered -> Ordered -> Projected. * use the `data-ng-repeat=` attribute, then use pipe syntax pass through `orderBy:`, etc. * We desire our UI to update upon changes to the the array. * Here are some examples: Let's continue...