JavaScript函数作为参数错误 - SyntaxError:意外的标记{

时间:2014-06-29 18:01:27

标签: javascript

我是Javascript的新手。现在我正在学习功能。我不知道为什么下面的代码会产生错误。

var myFunc= function()
{
return 5;
};

otherFunc(myFunc){
alert(myFunc);
};

SyntaxError: Unexpected token {

我在Google Chrome控制台中编写了这两个功能。

1 个答案:

答案 0 :(得分:1)

var otherFunc= function(myFunc){
alert(myFunc);
}

function otherfunc(myFunc){
alert(myFunc);
}

这就是如何在js中定义函数

otherFunc(myFunc)是我们如何调用函数并在其后放置{,因此js运行时表示意外的标记{