gpt4 book ai didi

javascript - 代码无法在 Visual Studios Code (VScode) 中运行

转载 作者:行者123 更新时间:2023-11-28 03:16:44 26 4
gpt4 key购买 nike

美好的一天,

我一天前刚刚在我的计算机上安装了 Visual Studio Code (vscode)。我是 JavaScript 新手,但我遇到了一些代码并想在其中进行测试。

如果我使用 Chrome 控制台,这行代码运行良好,但目前我将其放入刚刚安装的 vscode 中,它没有给出任何响应。

这是我正在测试的代码:

var fruit = 'Banana';
fruit.slice(0, 2);
// Outcome: "Ba"

但是如果我将代码更改为其他内容,请说:

var fruit = "Banana";
console.log(fruit.slice(0, 2));

然后就可以了,

有人可以告诉我为什么第一行代码在 Visual Studio Code (vscode) 中不起作用吗?

谢谢,曼尼

最佳答案

代码有效。 fruit.slice(0, 2); 返回“Ba”,但您没有将返回值分配给变量或对其执行任何操作,这就是为什么您可能认为代码不是工作。

var fruit = 'Banana';
var sliced = fruit.slice(0, 2);
// sliced is now equal to 'Ba'.
// If your program ended here, you wouldn't see anything on the console though.
// So far, this is equivalent to your first example.

console.log(sliced);
// Now we're just logging the value of sliced, and we will see 'Ba' in the console.
// Now, this block of code is equivalent to your second example.

关于javascript - 代码无法在 Visual Studios Code (VScode) 中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59572727/

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