从函数内部调用变量到另一个函数

Call a variable from inside a function into another function

我正在尝试从一个函数内部调用一个变量到另一个函数中。我是 运行 节点 js 上的代码,它不工作。同时,当我在 jsfiddle 上尝试代码时,它 运行 正常。有什么建议吗?谢谢

var array = [];
 
function first(){  
     
array.push(3);
    
}

Function second(){console.log(array);}

first();
second();

您需要将功能更改为仅功能。 function 关键字区分大小写。

看这里:https://jsfiddle.net/qw7or2cg/1/

var array = [];
 
function first(){  
     
array.push(3);
    
}

function second(){console.log(array);}

first();
second();

如果这是您在 Node 中使用的代码,请记住 Javascript 区分大小写,您写的是“Function”而不是“function”。 尝试:

var array = []
function first() {
  array.push(3)
}
function second() {
  console.log(array)
}
first()
second()