gpt4 book ai didi

javascript - 如何在 Safari 中使用箭头函数运行 ES6 代码?

转载 作者:数据小太阳 更新时间:2023-10-29 05:07:24 25 4
gpt4 key购买 nike

由于某些原因,在当前 Chrome 或 Firefox 中运行良好的 ES6 代码无法在 Safari 中运行 - 例如,arrow functions .据我所知,Safari 对 ES6 有很好的支持。有什么需要做的吗?

例子:

var arr = [1,3,5].map((i) => i*i);
console.log(arr);

或者如果它是一个完整的 .html 文件:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>

<script>
"use strict";

var arr = [1,3,5].map((i) => i*i);
console.log(arr);

</script>
</body>
</html>

Safari(我使用的是 9.0.3)不断给出 SyntaxError: Unexpected token '>'

最佳答案

基于MDN link , (靠近底部),Safari 尚不支持此功能。

关于javascript - 如何在 Safari 中使用箭头函数运行 ES6 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35075671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com