일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 영어공부
- 1일 1패턴
- 설날
- 1일 1영어회화
- 재택근무
- 달리기
- 스타일 가이드
- 가을
- 출산휴가
- 자바스크립트 스타일 가이드
- 결혼
- HTML
- 청첩장
- 예비맘
- 신혼생활
- 1일 1단어
- 용산아이파크몰
- 산책
- 영어 회화
- 1일 1독서
- css
- javascript
- 초코맘
- animation
- event
- 신혼
- 영어회화
- 결혼준비
- 업무
- effect
- Today
- Total
목록코딩물고기의 IT월드 (169)
코딩물고기
and, or not switch
1. vscode-icons 2. PostCss Sorting 3. Auto Rename 4. Beautify 5. Material Icon Theme
FastCampus 1. Heropy sam - https://heropy.blog/ HEROPY 웹디자인과 웹개발 기술을 공유하는 HEROPY 온라인 블로그입니다. 오프라인 지식 공유도 매회 진행합니다. 감사합니다. heropy.blog 2. Entity list - https://www.freeformatter.com/html-entities.html Complete list of HTML entities - FreeFormatter.com HTML Entity List Complete list of HTML entities with their numbers and names. Also included is a full list of ASCII characters that can be represen..
See the Pen BaKdbob by suna (@suna_) on CodePen.
class Animal { constructor(type, name, sound) { this.type = type; this.name = name; this.sound = sound; } say() { console.log(this.sound); } } const dog = new Animal("개", "멍멍이", "멍멍"); const cat = new Animal("고양이", "야옹이", "야옹"); dog.say(); cat.say(); ------------------------------------------------------------------------ extended class Animal { constructor(type, name, sound) { this.type = type;..