[javascript] Arrow function

sunny·2021년 1월 18일
0

🐣 javascript ES6

목록 보기
7/15
post-thumbnail

Arrow function

function 함수명 () {}

//아래처럼 표현할 수 있다.
const 함수명 = () => {
}


const 함수명2 = 인자 => {
	return  리턴값;
}

//아래처럼 줄여서 사용할 수 있다.
const 함수명2 = 인자 => 리턴값

예제

let newArr = [1,2,3,4,5].map(function(value) {
	return value * 2
});

console.log(newArr); // [2, 4, 6, 8, 10]


//화살표함수로 표현
let newArr = [1,2,3,4,5].map((value) => value *2);

console.log(newArr); // [2, 4, 6, 8, 10]

차이점

this가 다르다.

const myObj = {
  runTimeout() {
    setTimeout(function() {
      console.log(this === window); //true
      this.printData();
    }, 200);
  },
  
  printData() {
    console.log("hi!");
  }
}

myObj.runTimeout();

결과

const myObj = {
  runTimeout() {
    setTimeout( () => {
      console.log(this === window); //false
      this.printData();
    }, 200);
  },
  
  printData() {
    console.log("hi!");
  }
}

myObj.runTimeout();

결과

profile
blog 👉🏻 https://kimnamsun.github.io/

0개의 댓글

관련 채용 정보