4

考虑以下示例

一个老项目:

const [x, ...y] = "text";
console.log(x) // "t"
console.log(y) // "ext"

基于CRA的新项目:

const [x, ...y] = "text";
console.log(x) // "t"
console.log(y) // ["e", "x", "t"]

我不确定为什么要为旧项目y返回一个字符串 ( "ext"),而它是新项目的一个字符数组 ( ["e", "x", "t"])。是否与不同的JS版本有关?

注意:这两个结果都是在运行 webpack 开发服务器后提取的。

4

1 回答 1

4

babel 网站中,您可以看到您的基于 es2015-loose 的代码转换为此代码,因此此代码的输出与您的旧项目相同

"use strict";

var _text = "text",
    x = _text[0],
    y = _text.slice(1);

console.log(x); // "t"

console.log(y); // "ext"
于 2020-12-19T11:41:09.147 回答