Thursday, October 2, 2025
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
32330 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11926 POSTS0 COMMENTS
Shaida Kate Naidoo
6817 POSTS0 COMMENTS
Ted Musemwa
7078 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6774 POSTS0 COMMENTS