구조 분해 할당(Destructuring assignment)
배열이나 객체를 해제하여 그 값을 개별 변수로 담는 방법이다.
개별 변수로 할당된 값은 기존 값이 변경되더라도 변경되지 않는다(값만 copy 되는 것).
arr[0]은 3으로 변경되었지만 idx0은 그대로이다.
'Server' 카테고리의 다른 글
검색 서비스 구현: SQL 작성 또는 Full-text search(Elastic Search) (0) | 2022.03.21 |
---|---|
[Spring-boot] @RestController 와 @Controller (0) | 2022.02.02 |
[Flutter] pagination: 스크롤 시 추가 데이터 로딩하기(무한스크롤) (0) | 2022.01.25 |
[spring-boot] application.properties-dev로 실행하기 (0) | 2022.01.19 |
[Spring-boot] @RequestBody, @ResponseBody : HTTP body에 데이터 송수신하기 (0) | 2021.12.28 |