로그인 바로가기 하위 메뉴 바로가기 본문 바로가기
난이도
기본

웹 프론트엔드 시작하기 (리액트&리덕스)

임시 이미지 생활코딩
http://www.boostcourse.org/web231/forum/121293
좋아요 464 수강생 2824

소스 그대로 복붙하면 Unexpected token, expected "," (14:6) 오류가 납니다.

constructor (props){
  super(props);
  this.state = {
    subject : { title : 'WEB' , sub : 'World Wide Web!' },
    contents : [
      {id : 1 , title : 'HTML' , desc : 'HTML is for information'},
      {id : 2 , title : 'CSS' , desc : 'CSS is for design'},
      {id : 3 , title : 'JavaScript' , desc : 'JavaScript is for interactive'},
    ]
  }
}

subject 뒤에 쉼표 추가해주시면 됩니다.