일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리액트
- JavaScript
- 타입스크립트
- CSS
- REACT
- frontend
- Zustand
- 자바스크립트
- 노마드코더
- 투두앱만들기
- 프론트엔드
- webdevelopment
- 불변성
- 클래스
- 상속
- 자바스트립트
- 캡슐화
- 추상화
- 패스트캠퍼스
- 웹개발
- OOP
- 논리연산자
- js
- Props
- 객체지향프로그래밍
- 부트캠프
- Fetch
- github
- Hooks
- typeScript
- Today
- Total
목록Live Class/DevCamp (13)
connecting dots
참고 사이트https://playcode.io Javascript Playground (Sandbox, Repl)Javascript Playground (Sandbox, Repl)playcode.io 식1 + 1 (식)1 (값)= 2(값)==> 식 --> 결국 값이 된다 ! 값값의 종류1. 기본형 값 유형, 원시형123 // number_숫자 // Bigint(엄청 큰 숫자를 다룰 때)'123' // string_문자열"123" // string`123` // stringtrue, false // booleannull // null_아무것도 없다는 의미undefined // undefinedSymbol // Symbol 2. Object{object} 값만 있을 때 단점- 의미를 표현할 수 없음..
사이트https://webpack.js.org/ webpackwebpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.webpack.js.org flex 1 2 3 4 5 6 7 div { font-size: 20px; border: 1px solid gray;}.container { display: flex; background-color: red;}.box { background-c..

https://www.w3.org/TR/css-2023/ CSS Snapshot 2023Abstract This document collects together into one definition all the specs that together form the current state of Cascading Style Sheets (CSS) as of 2023. The primary audience is CSS implementers, not CSS authors, as this definition includes modules by spwww.w3.org css 선택자https://developer.mozilla.org/ko/docs/Web/CSS/CSS_selectors CSS 선택자 - CSS: ..

웹 개발자가 html을 어떻게 바라보아야 하는가 ?https://html.spec.whatwg.org/dev/ HTML Standard, Edition for Web DevelopersAbout this specification This specification is like no other — it has been processed with you, the humble web developer, in mind. The focus of this specification is readability and ease of access. Unlike the full HTML Standard, this "developer's edition"html.spec.whatwg.org ASCIIhttps://ko.wiki..

일급함수함수를 값으로 취급하는 것 --> 일급함수변수에 할당 가능, 인자로 전달 가능, return 가능const obj = { id: 1, title: 'my obj'};function myFunction () { return a;}obj.title = 'change';obj.fn = myFunction();const result = myFunction(myFunction) 함수코드 묶음을 값으로 취급할 수 있는 수단반드시 값(value)을 리턴한다 --> 리턴한 값을 호출한 곳에서 반환한다 !함수 호출 ==> const result = myFeat(); --> myFeat()으로 이동제어문 적인 성격 (코드의 흐름을 바꿈) 1. 이름없는 함수그 자체로는 의미 있지만 호출할 수 없기 때문에 변수..