Skip to content

Instantly share code, notes, and snippets.

@ericdouglas
Created January 29, 2014 15:59
Show Gist options
  • Save ericdouglas/8691039 to your computer and use it in GitHub Desktop.
Save ericdouglas/8691039 to your computer and use it in GitHub Desktop.
Study of "Recipes With AngularJS" - Chapter 1 - Recipe 1
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chapter 1 - Recipe 1 - Example 02</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular.min.js"></script>
</head>
<body ng-app>
<h3>We could too concatenate strings! {{ "A" + "M" + "A" + "Z" + "I" + "N" + "G" + "!!!" }}</h3>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment