그런데 화살표 함수는 생성자가 될 수 없으므로 prototype 속성을 받지 않는다.
function traditional() { } const arrow = () => { }; console.log("prototype" in traditional); // true console.log("prototype" in arrow); // false
화살표 함수가 현대 자바스크립트의 함수에서 유일한 새로운 함수은 아니다.
그런데 화살표 함수는 생성자가 될 수 없으므로 prototype 속성을 받지 않는다.
function traditional() { } const arrow = () => { }; console.log("prototype" in traditional); // true console.log("prototype" in arrow); // false
화살표 함수가 현대 자바스크립트의 함수에서 유일한 새로운 함수은 아니다.