How can we write AngularJS Expressions for combine of two strings ?

AngularJS expressions are written inside double braces: {{ expression }}.

Expressions are used to bind application data to html. Expressions behaves in same way as ng-bind directives. AngularJS application expressions are pure javascript expressions and outputs the data where they are used. Here is the example of combine of two strings,

AngularJS Expressions

<!DOCTYPE html>
<html>
<script src=js/angular.js”></script>
<body>

<div ng-app=””>
<p>Hello {{student.firstname + ” ” + student.lastname}}!</p>
</div>

</body>
</html>

Result : Hello Kiran Deepu