gpt4 book ai didi

javascript - 在声明之前调用函数在 javascript 中不起作用

转载 作者:行者123 更新时间:2023-12-01 02:22:40 24 4
gpt4 key购买 nike

在声明之前调用函数与标准函数声明一起使用

//calling the method prior to declaration...
greeter();

function greeter() {
console.log("Hi there!!!");
}

但它不适用于箭头函数或函数绑定(bind)方式。为什么??

//calling the method prior to declaration...
greeter();
const greeter = () => {
console.log("Hi there!!!");
}

最佳答案

因为这是一个函数表达式并且类似于

const greeter = function(){
console.log("Hi there!!!");
}

而且这些函数并没有被吊起。只有提升的东西才是变量声明constgreeter

进一步阅读有关 JavaScript 中的提升:

https://developer.mozilla.org/en-US/docs/Glossary/Hoisting

关于javascript - 在声明之前调用函数在 javascript 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49085817/

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