-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
10 lines (8 loc) · 739 Bytes
/
script.js
File metadata and controls
10 lines (8 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope){
$scope.student = [{ name : 'Susan Bhattarai', classification : 'Freshman', phone : '202-751-0762', dorm : 'Cook Hall'},
{name : 'Anish Adhikari', classification: 'Sophomore', phone : '202-938-2828', dorm : 'Towers Hall'},
{ name : 'Saugat Tripathi', classification : 'Sophomore', phone :'202-172-3837', dorm : 'College Hall South'},
{ name : 'Sumit Dhungel', classification : 'Freshman', phone : '273-262-2882', dorm : 'Towers East'},
{name : 'Pratyush Thapa', classification : 'Freshman', phone : '763-937-2715', dorm : 'College Hall North'}];
});