일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- sqld
- 스프링 부트 입문
- @Configuration
- 스프링 빈
- kafka
- JPA
- springboot
- db
- 스프링부트
- 스프링 부트 기본
- Effective Java
- 스프링 프레임워크
- SQL
- jdbc
- 스프링
- 스프링 컨테이너
- assertThat
- assertThrows
- DIP
- 스프링 부트
- mybatis
- resultMap
- 필드 주입
- 싱글톤
- spring
- java
- Javascript
- DI
- 생성자 주입
- thymeleaf
- Today
- Total
목록Language/JavaScript (25)
선 조치 후 분석
문제 / 답 순서로 정리하였습니다. 참고하세요. // Q1. make a string out of an array { const fruits = ['apple', 'banana', 'orange']; } // Q1. make a string out of an array { const fruits = ['apple', 'banana', 'orange']; console.log(fruits.toString()); // Me console.log(fruits.join('-')); // Ellie } // Q2. make an array out of a string { const fruits = '🍎, 🥝, 🍌, 🍒'; } // Q2. make an array out of a string { const frui..

JavaScript에서 자주 사용하는 'Array Interface' 사용법과 적용 예시 interface Array { /** * Gets or sets the length of the array. This is a number one higher than the highest index in the array. */ length: number; : 배열의 길이를 설정 또는 반환한다. 배열 인덱스보다 '1' 더 큰 길이이다. /** * Returns a string representation of an array. */ toString(): string; : 배열을 'String'으로 표현한다. /** * Returns a string representation of an array. The eleme..

JOSN + HTTP + AJAX + XHR + XML + HyperText + Markup + Object to Json + Json to Object + JSON.parser + JSON.stringify 서버 통신의 시작, 'JSON'에 대해서 공부를 해 볼것이다. 어떻게 활용할 수 있는지 알아보자. 브라우저 위에서 동작하고 있는 웹 사이트는 '웹 어플리케이션'과 같은 '클라이언트'들이 어떻게 서버와 통신할 수 있는지를 정리한 것이 바로 'HTTP (Hypertext Transfer Protocol)' 이다. 어떻게 이 'HyperText'를 '클라이언트'와 '서버'가 서로 주고 받을 수 있는지를 규약한 'Protocol'중 하나이다. ※'HyperText'는 웹 사이트에서 이용되고 있는 '하이퍼 ..
Object + Literal and properties + Object 생성법 + Computed properties + Property value shorthand +Constructor + in operator + for in vs for of + Object.assign Object 1. one of the JavaScrip's data types. : 자바스크립트 데이터 타입의 한 종류 2. a collection of related data and/or functionality. : 관련있는 데이터 또는 함수의 모음 3. Nearly all objects in JavaScript ars instances of Object. : 자바스크립트에 있는 거의 모든 객체는 객체의 인스턴스이다. 1. L..
Class + Getter&Setter(게터&세터) + Fields (public, private) + Static + Inheritance - 상속 + 다형성 + 재정의 (Overridng) + instanceOf Class : 조금 더 연관있는 데이터를 모아놓는 '컨테이너' 같은 역할 class person { name; //속성 age: //속성 speak(); //행동 } '클래스'는 '속성(fields)'과 '행동(methods)'이 종합적으로 묶여 있는 것이다. 즉, 관련있는 변수나 함수를 묶어 놓은 것. 간혹 '속성(fields)'만 들어있는 클래스도 있는데, 이것을 '데이터 클래스'라고 부른다. 그리고 클래스 '내부적으로 보이는 변수'와 '밖에서 보일 수 있는 변수'를 나누기도 하는데, 이..

Function + Function declaration + Parameters + Default parameters + Rest parameters + Local scope + Return a value + Early return, early exit + Function expression + Callback function + anonymous function + named function + Arrow function 'procedural language'는 'Function'이 중요한 역할을 한다. 때로는 'sub-program'이라 불린다. program안에서 작은 program역할을 하기 때문이다. Function : Input을 받아서 Output을 하는 것. 1. Function은 프로그램..