Heim  >  Fragen und Antworten  >  Hauptteil

函数的运行结果

为什么会运行不出来结果呢?

<script type="text/javascript">
//函数可以像参数一样从一个函数传递到另外一个函数,也可以将一个函数作为另外一个函数的结果返回

function add(a,b)
{
 return a+b;
}
function show(fun,num)
{
    return fun(num,88);
}
show(add,66);

</script>


尼古拉阿列克塞耶维奇奥斯特洛夫斯基尼古拉阿列克塞耶维奇奥斯特洛夫斯基2882 Tage vor937

Antworte allen(2)Ich werde antworten

  • 数据分析师

    数据分析师2017-09-30 23:24:02

    函数的运行结果-PHP中文网问答-函数的运行结果-PHP中文网问答

    围观一下哦,学习一下。

    Antwort
    0
  • 巴扎黑

    巴扎黑2016-12-21 11:25:25

    你没有存结果   你可以用个变量存起来   比如var sum=show(add,66);    console.log(sum);

    或者直接看结果console.log(show(add,66))


    Antwort
    0
  • StornierenAntwort