I Have AngularJS Controller, Which had $scope Object With Some data,i.e.,
$scope.Student;
Now I want to assign that data to Html page having script as below
<script type="text/javascript">
var stdId=$scope.Student.StudentId;
var stdName=$scope.Student.StudentName;
</script>
thanks n regards,
Chaitanya