본문 바로가기
NodeJs

static method

by ByteBridge 2020. 1. 10.
반응형
class test {
	constructor() {
		this.config = {}
	}
	fn () {
		
	}
	static call(){
		//생성자 클래스를 생성하지 않고 직접 호출 가능한 함수
		//생성자에 선언된 자원에는 접근 불가능함.
		console.log('static method')
	}
}
//사용
test.call()
반응형

'NodeJs' 카테고리의 다른 글

template string  (0) 2020.01.10
string  (0) 2020.01.10
some  (0) 2020.01.10
has  (0) 2020.01.10
set  (0) 2020.01.10