728x90 자바스크립트 바인딩1 [JavaScript] function.bind() / 함수.bind() [자바스크립트 / Javascript] Function.bind() / 함수.bind() 함수와 객체를 묶는(연결) 함수 bind 기본 문법 function 함수 (){ //함수 기능.. } 함수.bind(객체); 샘플 예제 const person = { name : '홍길동', age : 20 }; function PrintInformation(){ console.log(this.name,this.age); } 실행 결과 undefind undefind 샘플예제 : bind 함수를 통한 객체 연결 const person = { name : '홍길동', age : 20 }; function PrintInformation(){ console.log(this.name,this.age); } const Pri.. 2021. 6. 16. 이전 1 다음 728x90