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
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
0
Answer:
document.write(myColor.toString() + "<br>");
document.write(myColor.join() + "<br>");
document.write(myColor.join('+') + "<br>");
Explanation:
Similar questions