I am new to AngularJS I have a variable that consists of objects
var listitems=Model.objectname;
how can I pass (listitems) - controller to useby $scope
I tried to use it on ng-init and access on the controller from $scope
<div ng-app="angularApp" ng-controller="angularController"
ng-init="values=@listitems)">
Thanks