본문 바로가기

분류 전체보기

(67)
1-3 순서도 그리기 1. 화면을 먼저 짠다. 2. 다음 순서도를 그린다. (세세하게)
1-2프로그래밍사고의 중요성 1. 최대한 사람이 읽기 편하게 해야 좋다. = 컴퓨터가 읽기 쉽게 하면 안됨 프로그래머는 통역가임. 2. 내가ㅑ 프로그램을 어떻게 만들어야겠다. 먼저 설계도를 그리고 코드를 구현함 -> 디지털적 사고가 필요하다. 초반에는 시각화(그려야한다)
1-1 developer.mozilla.org/en-US/ MDN Web Docs Hacks Blog Read more at hacks.mozilla.org The internet was set on fire (pun intended) this week, by what I'm calling 'fox gate', and chances are you might have seen a meme or two about the Firefox logo. Many people were pulling up for a battle royale bec developer.mozilla.org stackoverflow.com/ Stack Overflow - Where Developers Learn, Share, & Build Care..
구구단
2.HTML속성과 state(상태) props : 부모와자식공유 state(상태) : 자바의 변수 같은것?
1. 첫 컴포넌트 1. 리액트 스크립트 추가하고 div 만들고 const e : e를 상수로 정의하고 그 값을 React.createElement; 로 선언한다. createElement : 자바스크립트 문서에 HTML요소를 추가할 수 있다. class Likebutton extends React.Component : Likebutton 클래스를 만들고 React.Component를상속한다. constructor(props) - 생성자초기화 { 부모(props); render() { -> 컴포넌트가 어떻게 생겼는지 정의하고, 뷰의 구성과 작동방식에 대한 정보를 지닌 개체를 반환한다. document.querySelector('#root') -> id값이 root인 요소에 접근한다
질문을 잘하는 개발자 jbee.io/essay/good_questionor/ 질문을 잘하는 개발자 … jbee.io
리액트를 쓰는 이유 1. 사용자 인터페이스 편하게 만들기 위해서 (싱글 페이지 웹사이트 자연스럽게 넘어가게 하려고) (앱과 비슷하게) 2. 데이터 처리 쉽게 3. 재활용가능한 컴포넌트 (중복을 피할 수 있다)