일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- webpack
- build
- ReactNative
- centos
- Android
- PYTHON
- IOS
- react
- vsCode
- qunit
- Chrome
- 리눅스
- 오블완
- 네트워크
- 맥
- unittest
- VirtualBox
- 센토스
- 개발
- MAC
- androidstudio
- linux
- TensorFlow
- xcode
- MachineLearning
- node
- jest
- 티스토리챌린지
- localserver
- Today
- Total
목록Frontend (186)
로메오의 블로그
# Collection _.filter(콜렉션, 조건) 콜렉션에서 검색 var users = [ { 'user': 'barney', 'age': 36, 'active': true }, { 'user': 'fred', 'age': 40, 'active': false } ]; _.filter(users, function(o) { return !o.active; }); // => objects for ['fred'] // The `_.matches` iteratee shorthand. _.filter(users, { 'age': 36, 'active': true }); // => objects for ['barney'] // The `_.matchesProperty` iteratee shorthand. _.f..
class Fun { private _name: string = ''; get name(): string { return this._name; } set name(value: string) { this._name = value; } } const fun = new Fun(); fun.name = 'hello'; console.log(fun.name) >> hello typescript playground에서 실행 해보기
트리구조 데이터 준비 var data = { id: '1', children: [ { id: '2', children: [ { id: '4', children: [ { id: '5' }, { id: '6' } ] }, { id: '7' } ] }, { id: '3', children: [ { id: '8' }, { id: '9' } ] } ] }; 재귀함수 var array = [] var getAllRoles = item => { array.push(item); if (item.children) { return item.children.map(i => getAllRoles(i)); } } getAllRoles(data) console.log(array) >> (9) [{…}, {…}, {…}, {…},..
POSTMAN은 팀 멤버 3명까지 무료입니다. Creat Workspace를 눌러 이름을 입력하고 Visibility > Team으로 설정하고 Create Workspace합니다. ManageTeam 을 누릅니다. Invite Users를 누릅니다. 사용자 이메일을 입력하고 Send Invites버튼을 누릅니다. 또는 GetLink를 눌러서 주소를 생성하고 그 주소를 멤버에서 보냅니다. 주소를 받은 멤버가 멤버 등록하면 Team members에 사용자를 확인할 수 있습니다. 이제 Collections 등 workspace를 공유할 수 있습니다.
for of const fun = () => { const arr = [1,2,3,4,5] for (const i of arr) { if (i === 3) return i } } const func = fun(); console.log('result:', func) >> result: 3 lodash const fun = () => { return _.find([1,2,3,4,5], (e) => { if (e === 3) return e; }) } const func = fun(); console.log('result:', func) >> result: 3
// @ts-nocheck 파일 최상단에 위 주석을 추가하면 해당 파일은 typescript lint 체크를 제외할 수 있습니다.
function play1() { return new Promise((resolve) => { setTimeout(() => { console.log('play1') resolve(); }, 1000); }) } function play2() { return new Promise((resolve) => { setTimeout(() => { console.log('play2') resolve(); }, 1000); }) } async function start() { await play1(); await play2(); console.log('finish') }; start(); console => play1 play2 finish
## git 설정값 보기 $ git config --list ## git user정보 설정 $ git config --global user.name "myname" $ git config --global user.email "my@email.com" ## local 저장소 생성 $ git init ## local 저장소 삭제 $ rm -rf .git ## remote 저장소 설정 $ git remote add origin https://github.com/user/myproject.git ## local 저장소 현재상태 $ git status ## branch 확인 / 변경 $ git branch * master $ git branch -M main $ git branch * main ## remote ..