UNPKG
fruitstand
Version:
latest (0.0.1)
0.0.1
fruit stand
github.com/classmember/fruitstand
classmember/fruitstand
fruitstand
/
examples
/
learning-angularjs
/
ch05
/
js
/
expressions_javascript.js
6 lines
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
angular.module(
'myApp'
, []) .controller(
'myController'
,
function
(
$scope
) {
$scope
.Math = window.Math;
$scope
.myArr = [1];
$scope
.removedArr = []; });