Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 186 Bytes

join.md

File metadata and controls

8 lines (5 loc) · 186 Bytes

#Joining

The .Join() method, makes an array turn into a string and joining it all together.

var array ["one", "two", "three", "four"]; 

console.log(array.join(" "));