小码哥的IT人生

JavaScript Array from() 方法

JavaScript基础 2022-05-13 16:27:35小码哥的IT人生shichen

JavaScript Array from() 方法

实例

从字符串创建数组:

var myArr = Array.from("ABCDEFG");

完整实例:

<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 数组</h1>
<p>from() 方法从具有 length 属性或可迭代对象的任何对象返回 Array 对象。</p>
<p id="demo"></p>
<script>
const myArr = Array.from("ABCDEFG");
document.getElementById("demo").innerHTML = myArr;
</script>
<p>Internet Explorer 不支持 from() 方法。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

from() 方法从具有 length 属性或可迭代对象的任何对象返回 Array 对象。

浏览器支持

表格中的数字注明了完全支持该方法的首个浏览器版本。

Chrome Edge Firefox Safari Opera
Chrome 45 Edge 12 Firefox 32 Safari 9 Opera 25
2015 年 9 月 2015 年 7 月 2014 年 9 月 2015 年 9 月 2014 年 10 月

注释:Internet Explorer 不支持 from() 方法。

语法

Array.from(object, mapFunction, thisValue)

参数值

参数 描述
object 必需。需转换为数组的对象。
mapFunction 可选。对数组的每个项目调用的 map 函数。
thisValue 可选。执行 mapFunction 时用作 this 的值。

技术细节

返回值: Array 对象
JavaScript 版本: ECMAScript 6

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024