[javascript] Arrow function
8683 ワード
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();
結果
Reference
この問題について([javascript] Arrow function), 我々は、より多くの情報をここで見つけました https://velog.io/@nsunny0908/javascript-Arrow-functionテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol