formations/javascript/angular/exercices/routage/app.js

20 lines
255 B
JavaScript

/*
* Énoncé:
*
*
*/
var Exo = angular.module('Exo', []);
Exo.controller('MainCtrl', ['$scope', function($scope) {
$scope.nom = null;
$scope.prenom = null;
$scope.age = null;
$scope.sayHello = function() {
// alert('...');
};
}]);