2019년 6월 24일 ~ 30일
Written on June 24, 2019
📅 2019년 6월 24일
Todo
- React Native Todo list 만들기 (노마드코더 Kawai To Do 참고)
안드로이드 에뮬레이터에 Device 추가하기
Platform에 따른 Style 적용하기
React Native 에서 returnKey 변경하기
<TextInput
...
returnKeyType={"done"}
/>
React Native condition에 따라 style에 변화주기
React Native onPress 종류
- onPressIn : 누르기 시작할 때
- onPressOut : 손가락을 뗄 때
- onPress : 누를 때
- onLongPress : 길게 누를 때
- delayLongPress : 몇 초간 누를 때
📅 2019년 6월 27일
Todo
- Python for Everybody 학습
Python
DevOps란?
DevOps는 Development와 Operations의 합성어로, 기존의 개발 업무와 관리 업무로 나누어진 두 역할 사이의 커뮤니케이션, 협업, 통합을 강조하는 개념이자 문화
- reference DevOps란?
📅 2019년 6월 28일
null, undefined, undeclared의 차이점
-
undeclared
: 이전에var
,let
,const
를 사용하여 생성되지 않은 식별자에 값을 할당할 때 생성. strict 모드에서는undeclared
변수에 할당하려고 할 때,ReferenceError
발생 -
undefined
: 변수는 선언되었지만, 값이 할당되지 않은 변수.
var foo;
console.log(foo); // undefined
null
:null
값이 명시적으로 할당된 것
var foo = null;
console.log(foo === null); // true
📅 2019년 6월 30일
Todo
- 새로운 환경에 적응하기
- 아침 운동(유산소)
- Todo app 기획 1차 완료
- Jeju web app 기획 완료
- Jeju web app react-router 구현
- Styled Component 공부
ESLint와 Prettier 설정하기(VSCode)
👩🏻💻 배우는 것을 즐기는 프론트엔드 개발자 입니다
부족한 블로그에 방문해 주셔서 감사합니다 🙇🏻♀️
in the process of becoming the best version of myself