Tag Archives: angularjs string concatenation example

AngularJS Strings


AngularJS Strings : AngularJS String works same as the javaScript strings. You can perform operation same as the javaScript string.


AngularJS Strings simple Example using Expressions

Hi This is {{str1 + " From " + str2}}

Example 1

    



Hi This is {{str1 + " From " + str2}}

Try it »

Example of String with ng-bind

Example 2

    


Hi This is

Try it »