learning-react
learning-react copied to clipboard
[개정판] p.89 ER6의 화살표 함수 예제 오타
괄호가 더 추가되어 있어서 제거가 필요합니다.
현재 책의 예제
setTimeout(() => { console.log('hello world') }), 1000);
수정 후
setTimeout(() => { console.log('hello world') }, 1000);
감사합니다. 다음 중쇄때 반영합니다 :)