javascript-005 - 클래스와 오브젝트의 차이점, 객체지향 언어 클래스 정리
class & object class fields, methods로 구성 template declare once no data in object instance of a class created many times data in Ob...
class & object class fields, methods로 구성 template declare once no data in object instance of a class created many times data in Ob...
Function fundamenta lbuilding block in the program subprogram can be used multiple times performs a task or calculates a value Function declaration...
String concatenation console.log('my' + ' cat'); // my cat console.log('1' + 2); // 12 console.log(`string literals: 1 + 2 = ${1 + 2}`); // string literals:...
Varilable, rw(read/write) let : ES6에서 추가됨 mutable let name = 'ellie'; console.log(name); // ellie name = 'hello'; console.log(name); // hello block...
chocolatey 설치 > @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-O...
[Drawer] Custom Component /src/my_drawer.js 생성 import React, { Component } from 'react'; import { StyleSheet, ScrollView, Image, View, Text, Bu...
[Drawer] 설치 및 화면 Linking 화면 좌측이나 우측에서 나오는 새로운 스크린 햄버거 메뉴나 쇼핑몰 상품목록의 필터로 쓰임 drawer navigator library 설치 $ npm install @react-navigation/draw...
[Stack] Header Bar 설정 Header Bar의 title은 Screen의 name이 기본값임 options 으로 속성 수정 가능 App.js 수정 // App.js ... <Stack.Navigator initialRouteNa...
[Stack] 화면 Linking App.js 수정 import 'react-native-gesture-handler'; import React, { Component } from 'react'; import { StyleSheet, View, Text }...
React Navigation 소개 및 설치 강좌는 react navigation v5로 진행되었음 새로운 프로젝트 생성 $ react-native init --version 0.61.5 react_navigation_01 $ cd react_navig...