1급 함수

Bluefriday (토론 | 기여)님의 2020년 2월 20일 (목) 15:42 판

1 개요

first-class function
1급 함수, 일급 함수, 퍼스트-클래스 함수

2 JavaScript 예시

일반 함수
function sayhello(to) {
	console.log("Hello, "+to+".");
}
sayhello("John");
// Hello, John.
1급 함수
var sayhello = function(to) {
	console.log("Hello, "+to+".");
}
sayhello("John");
// Hello, John.

3 같이 보기

4 주석

  1. 5.3부터 지원
  2. 1.9부터 지원

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}