Skip to content

Latest commit

 

History

History
26 lines (13 loc) · 336 Bytes

Function.md

File metadata and controls

26 lines (13 loc) · 336 Bytes

Function

프로토타입의 프로퍼티

Function.length

  • 형식 매개변수의 수를 나타낸다.
function func1() {};
const func2 = (a, b) => {};

console.log(fun1.length);	// 0
console.log(fun2.length);	// 2

Function.name

  • 함수의 이름을 나타낸다.

  • 11.2.2.3 name 프로퍼티 참고