Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

coding etude

method vs function 본문

others TIL

method vs function

코코리니 2022. 9. 29. 14:36

클레스에 소속되어 사용되어 지면 method

 

전역, 지역 모두 포함하여 개별적으로 사용되면 function

 

class Mytest {
	function test(a, b){
    	// 메소드
    }
}

var value = Mytest.test(a, b);

function test2(a, b){
	// 함수
}

var value2 = test2(a, b);