Home>Article>Web Front-end> How to convert string to array in js
#How to convert string to array in js?
The js string to array function is "split()", its usage is as follows
string.split(separator,limit)
Parameter value
Parameters | Description |
separator | Optional. A string or regular expression to split the string Object from where specified by this parameter. |
limit | Optional. This parameter specifies the maximum length of the returned array. If this parameter is set, no more substrings will be returned than the array specified by this parameter. If this parameter is not set, the entire string will be split regardless of its length. |
First create a new index.html file and add the following code:
m.sbmmt.com 字符串转换成数组
Then run the index.html file in the browser and view the console
Related references:JS Tutorial
The above is the detailed content of How to convert string to array in js. For more information, please follow other related articles on the PHP Chinese website!