Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.03 KB

to-array.md

File metadata and controls

35 lines (22 loc) · 1.03 KB
标题 标签
toArray(将任意值转换成数组) array(数组)

将任意值转换成数组。

  • 使用es6Array.from方法来将类数组转换成数组
  • 如果不支持es6就使用Array.prototype.slice.call方法来进行转换

代码如下:

const toArray = (value = '') =>
  Array.from ? Array.from(value) : Array.prototype.slice.call(value);

ts代码如下:

调用方式:

toArray('foo'); //["f", "o", "o"]

应用场景

以下是一个实战示例:

结果如下:

<iframe src="codes/javascript/html/to-array.html"></iframe>