search

Home  >  Q&A  >  body text

这几种表示有什么区别?

function sub2()   和   var sub2()   和   var sub=function()     都能输出,但有什么区别啊 

checkcheck2913 days ago1065

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:36:12

    What is the difference between these expressions? -PHP Chinese website Q&A-What are the differences between these representations? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-22 15:37:34

    function sub2()表示定义一个函数, var sub2()表示定义一个变量,var sub2=function();表示定义一个变量获取方法function()的返回值,但是function是Javascript的关键字不能作为方法名。

    reply
    0
  • check

    不能作为方法名是什么意思?

    check · 2016-12-22 15:38:28
    迷茫

    即不能作为函数名!

    迷茫 · 2016-12-22 15:39:13
  • Cancelreply