Monday, April 6, 2026
HomeLanguagesJavascriptTypeScript | Array join() Method

TypeScript | Array join() Method

The Array.join() is an inbuilt TypeScript function which is used to joins all the elements of an array into a string. 
Syntax:

array.join(separator)

Parameter: This method accept a single parameter as mentioned above and described below:

  • separator : This parameter is the a string to separate each element of the array.

Return Value: This method returns the string after joining all the array elements. 
Below examples illustrate the Array join() method in TypeScript.

Example 1: 

JavaScript




<script>
    // Driver code
    var arr = [ 11, 89, 23, 7, 98 ]; 
  
    // use of join() method 
    var str = arr.join(", ")
       
    // printing element
    console.log("String : " + str);
</script>


Output: 

String : 11, 89, 23, 7, 98

Example 2: 

JavaScript




<script>
    // Driver code
    var arr = [ 'a','b','c','a','e' ]; 
  
    // use of join() method 
    var val = arr.join(" ")
    var val1 = arr.join(" + ")
       
    // printing element
    console.log(val);
    console.log(val1);
</script>


Output: 

a b c a e
a + b + c + a + e

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32512 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6886 POSTS0 COMMENTS
Nicole Veronica
12007 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7015 POSTS0 COMMENTS
Ted Musemwa
7259 POSTS0 COMMENTS
Thapelo Manthata
6972 POSTS0 COMMENTS
Umr Jansen
6960 POSTS0 COMMENTS