최근 포스트

react 기초 배우기 001 - react

최대 1 분 소요

React란 프로젝트 만들기 vs code 실행 터미널 실행 # 프로젝트 생성 $ react-native init --version 0.61.5 react_01 # 폴더로 이동 $ cd react_01 # 프로젝트 실행 $ npm sta...

react native 개발 환경 for mac - 002

최대 1 분 소요

새 프로젝트 생성 Visual Studio 실행 View > Terminal 실행 # 새 프로젝트 생성 $ react-native init --version 0.61.5 my_first_app # 폴더 이동 $ cd my_first_app File &g...

react native 개발 환경 for mac - 001

3 분 소요

리액트 네이티브란 페이스북의 오픈소스 모바일 응용 프로그램 네이티브 앱 개발을 위한 자바스크립트 프레임워크 크로스플랫폼, 안드로이드 ios 동작가능 기본언어 자바스크립트, 쉽다 선수지식 html, css, js es6, 리액트 리액트 네이티브 기본원리 ...

javascript es6 기초 배우기 006 - Class

최대 1 분 소요

Class javascript에서 class는 함수처럼 쓰임 class Person { constructor(region_, gender_) { this.region = region_; this.gender = gender_; } greeting...

javascript es6 기초 배우기 005 - Arrow Function

최대 1 분 소요

Arrow Function => 를 사용 Arrow Function 사용법1 : 표현식의 결과값을 반환하는 표현식 본문에 쓰임 let arr = [ 1, 2, 3, 4, 5]; let twice = arr.map(v => v * 2); console.log(...

javascript es6 기초 배우기 003 - Rest Operator

최대 1 분 소요

Rest Operator 함수에 들어오는 인자 중 나머지 인자들을 표준 자바스크립트 배열로 대체하는 방법 function f (a, b, ...c) { } function printNums(num1, num2) { console.log(num1, num2); } ...

javascript es6 기초 배우기 002 - for of 반복문

최대 1 분 소요

for of 반복문 for in 반복문 : 객체의 key에만 접근가능 let array = [ 10, 20, 30, 40 ]; for (let val in array) { console.log(val); console.log(array[val]); //배열에 ke...

프로그래밍 기초 in Python 배우기 002

3 분 소요

파이썬 자료형 문자열 문자들의 집합 # 큰 따옴표, 작은 따옴표로 표현 "python" 'python' """python 3""" '''python 3''' # 큰 따옴표안에 작은 따옴표 "'hello'" # 작은 따옴표안에 큰 따옴표 '"HELLO"' # 백슬래...