Skip to content

Instantly share code, notes, and snippets.

@renatocantarino
Created June 1, 2014 01:02
Show Gist options
  • Save renatocantarino/4a2fbe9c6d7d23810ec8 to your computer and use it in GitHub Desktop.
Save renatocantarino/4a2fbe9c6d7d23810ec8 to your computer and use it in GitHub Desktop.
JS controller AngularJS
function ContatoController($scope) {
$scope.contatos = ["renato", "astrogildo"];
$scope.adicionar = function() {
$scope.contatos.push($scope.novo);
$scope.novo = "";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment