Open In App

How to concat strings using AngularJS ?

Last Updated : 26 Jul, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

In this article, we will see how to concat strings in AngularJS. There are few ways to concat the strings in AngularJS. In this article, we will see 2 of them.

Example 1: In the first example, we are using the '+' operator to concat the strings 

Output:


Example 2: In the second example we will use the standard concat() method for concatenation.

Output:


Next Article

Similar Reads