Computer Science, asked by ktamang026, 7 months ago

Write a simple JavaScript program to join all elements of the following array into a string. Sample array : myColor = ["Red", "Green", "White", "Black"];

Answers

Answered by amityadav7246
0

Answer:

Just Info -Today, i.e. on 09 September 1947, Scientist Grase Mare Hoper found a Computer Bug in Mark -2 computer. A Bug is a type of computer virus in system.

Answered by kosukesuzuya
0

Answer:

document.write(myColor.toString() + "<br>");

document.write(myColor.join() + "<br>");

document.write(myColor.join('+') + "<br>");

Explanation:

Similar questions