Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 211 Bytes

Function.md

File metadata and controls

9 lines (7 loc) · 211 Bytes

##Function

 函数在任何一门语言中都是核心概念,es中用function来声明函数,后跟一组参数和函数体

function functionName(arg1, arg2, ..., argn) {
  //todo
}