HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🐣
프론트엔드 데브코스 3기 교육생
/
😃
동영팀
/
회의록 목록.
회의록 목록.
/
13일차 스크럼
13일차 스크럼
13일차 스크럼

13일차 스크럼

  1. 중요 내용.
    1. . 3주차 커피챗
    2. .
    3. .
  1. 오늘 할일
    1. 김민우
      Day 13 강의
      과제 Todo List
      김민재
      강의
      til
      todo 과제
      김성현
      강의 듣기
      til
      과제
      변건오
      13일차 강의 + TIL
      Todo List 과제
      안재관
       
  1. 공유 내용
    1. Ignoring Code · Prettier
      Use .prettierignore to ignore (i.e. not reformat) certain files and folders completely. Use "prettier-ignore" comments to ignore parts of files. To exclude files from formatting, create a .prettierignore file in the root of your project. .prettierignore uses gitignore syntax. Example: It's recommended to have a .prettierignore in your project!
      Ignoring Code · Prettier
      https://prettier.io/docs/en/ignore.html
      Ignoring Code · Prettier
    2. .
    3. .
  1. 질문 내용
    1. li태그 안에 button을 넣었더니 button을 클릭했을 때, li ⇒ bubbling 막기
      1. 애초에 bubbling 막으려면 css를 조작해야하나?
    2. new 오류
    3. 컴포넌트 의존성 문제에 대해서
        • 데이터의 흐름은 의존성에 관련없음
        • 직접적인 데이터의 상호작용이 있으면 의존성을 갖음
    4. promise안에 promise가 있어도 꺼내 쓸 때 상관이 없는지? 배열 안에 배열이 있는 2차원 배열 같은 경우 와 비교
    5. try catch를 사용하는 예시 // try에서 에러 발생시 출력되는 "" 는 뭔가용
    6.  
      e.
      const hello = () => { console.log(this.state); }; this.hello2 = () => { console.log(this.state); };