gpt4 book ai didi

javascript - 误解?为什么Javascript会自动执行变量?

转载 作者:行者123 更新时间:2023-12-03 01:43:17 29 4
gpt4 key购买 nike

我目前正在学习 Javascript,我想知道为什么下面的代码会执行“console.log('why')”。我认为“变量”(var、let、const)仅存储信息,不能自行执行。我不希望以下内容实际执行 console.log。

const x = console.log('why');

//likewise why would this work (granted if there was a button and an alert function)
function onClickFunction() {
var myVar = setInterval(alertFunc, 3000);
}

任何帮助将不胜感激,我认为我对使用变量可以完成什么有误解。

最佳答案

出现这种情况是因为您在使用参数'why'调用时已将函数console.log的输出分配给了x

如果您想将字符串分配给 x,那么您可以使用 string literal 来实现。用引号来表达它,如下所示:

const x = "some string";

关于javascript - 误解?为什么Javascript会自动执行变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50750933/

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