Become a member
Sign in
Get started
Newaj Ahmed
Follow
2 Following
1 Followers
Profile
Latest
Newaj Ahmed
Nov 1
· 2 min read
JavaScript Array Methods
Converting Arrays to Strings: To convert an Array to string we use the method toString( ).
Example:
var colors= [“Red”, “Yellow”, “Orange”, “Blue”]; console.log( colors.toString( ));
20