post-thumbnail

Flutter - Appbar

글자와 아이콘, 버튼 넣는 법과 스타일, appbar 꾸미는 법

어제
·
0개의 댓글
·
post-thumbnail

Flutter - 박스 디자인

margin, padding, decoration

2024년 7월 14일
·
0개의 댓글
·
post-thumbnail

Flutter - 가로세로 배치와 Scaffold

Scaffold, Row, Column, mainAxisAlignment, crossAxisAlignment

2024년 7월 14일
·
0개의 댓글
·
post-thumbnail

Flutter - APK 빌드

APK 빌드와 디바이스 연결

2024년 6월 29일
·
0개의 댓글
·
post-thumbnail

Flutter - Widget(위젯)

Widget

2024년 6월 26일
·
0개의 댓글
·
post-thumbnail

Flutter 개발환경 구축

Flutter 개발환경 구축

2024년 6월 21일
·
0개의 댓글
·
post-thumbnail

Flutter(플러터)란?

플러터란?

2024년 6월 16일
·
1개의 댓글
·
post-thumbnail

JavaScript - 정규표현식

정규표현식이란?

2024년 5월 27일
·
0개의 댓글
·
post-thumbnail

JavaScript - 커링(Currying)

Currying

2024년 5월 20일
·
0개의 댓글
·
post-thumbnail

JavaScript - 스코프 체인(scope chain)

스코프 체인(Scope Chain), 실행 컨텍스트

2024년 5월 8일
·
0개의 댓글
·
post-thumbnail

JavaScript - 렉시컬 스코프와 클로저

클로저는 함수와 함수가 선언된 어휘적 환경의 조합이다. 클로저를 이해하려면 자바스크립트가 어떻게 변수의 유효범위를 지정하는지 렉시컬 스코프(Lexical Scope)를 먼저 이해해야 한다. 정적 스코프(static scope), 렉시컬 스코프(Lexical Scope)란? 렉시컬 스코프는 한 마디로 함수를 어디에 선언하였는지에 따라 상위 스코프가 결정되...

2024년 5월 7일
·
0개의 댓글
·
post-thumbnail

JavaScript - 깊은 복사 / 얕은 복사

깊은 복사와 얕은 복사

2024년 5월 3일
·
0개의 댓글
·
post-thumbnail

정규화

제1, 2, 3, BCNF 정규화

2024년 4월 24일
·
0개의 댓글
·
post-thumbnail

JavaScript - 맵과 셋

Map과 Set

2024년 4월 15일
·
0개의 댓글
·
post-thumbnail

JavaScript - 제너레이터

제너레이터란? 일반 함수는 하나의 값(혹은 0개의 값)만을 반환합니다. > 하지만 제너레이터(generator)를 사용하면 여러 개의 값을 필요에 따라 하나씩 변환(yield)할 수 있습니다. 제너레이터와 이터러블 객체를 함께 사용하면 손쉽게 데이터 스트림을 만들

2024년 3월 29일
·
0개의 댓글
·
post-thumbnail

공백으로 구분하기 - Array.split(정규표현식)

filter는 boolean, 정규표현식

2024년 2월 28일
·
0개의 댓글
·
post-thumbnail

5명씩 - Array.reduce()

return names.reduce((acc, cur, idx) => { if(idx % 5 === 0) acc.push(cur); return acc; }, []);

2024년 2월 28일
·
0개의 댓글
·
post-thumbnail

가위바위보 - Array.map()

[...rsp].map(v => arr[v]).join("");

2024년 2월 27일
·
0개의 댓글
·
post-thumbnail

조건에 맞게 수열 반환하기(3) - Array.map()

arr.map((num) => num * k);

2024년 2월 27일
·
0개의 댓글
·
post-thumbnail

숨어있는 숫자의 덧셈(1)

2024년 2월 26일
·
0개의 댓글
·