concat string typescript

Solutions on MaxInterview for concat string typescript by the best coders in the world

showing results for - "concat string typescript"
Sofia
09 Jun 2016
1var str1 = new String( "This is string one" ); 
2var str2 = new String( "This is string two" ); 
3var str3 = str1.concat(str2.toString());
4console.log("str1 + str2 : "+str3)   
5// str1 + str2 : This is string oneThis is string two