UNPKG

wat

Version:

Community-controlled cheat sheets for every coder.

8 lines (6 loc) 217 B
## .toString() Returns a string representing the specified array and its elements. ```js let months = ['Jan', 'Feb', 'Mar', 'Apr']; let monthString = months.toString(); // 'Jan,Feb,Mar,Apr' ```