Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

array join method

//The join() method also joins all array elements into a string.

const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.join(" * ");
// result :  Banana * Orange * Apple * Mango


//if you find this answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
 
PREVIOUS NEXT
Tagged: #array #join #method
ADD COMMENT
Topic
Name
8+9 =