티스토리 뷰
Spread Operator in Javascript
1. In ES6, By using the spread operator, you can simply populate an array to another array.
'=' only allows you to copy the reference not the value of the array.
'=' 는 단지 주소값을 전달할 뿐 진짜 값을 전달하지 못하기때문에 spread operator를 사용해서 array를 복사할 수 있다.
function threeDots(arr) {
let sticks = [...arr];
}
2. Math.min() and Math.max() expect a list of arguments not an array. If you want to use an array you need to use the '...' spread syntax. e.g. Math.min(...arr)
//Object.value() returns an array
let mostRepeated = Math.max(...Object.values(object));
3. 아래 코드에서 spread operator 없이는 error occured.
...this._defineItem("userInfo", userName.replace(/(\s*)/g, ""), "vaadin:user"),
const userData = {
...this._defineItem("userInfo", userName.replace(/(\s*)/g, ""), "vaadin:user"),
childNode: [
{
"id": "userInfo",
"name": i18next.t("menu.userInfo"),
"icon": "vaadin:user",
},
{
"id": "readingList",
"name": i18next.t("menu.readingList"),
},
],
};
아래 코드로 대체 가능. 객체안에서 spread operator는 key value를 대체 할 수 있다.
_defineItem : ("userInfo", userName.replace(/(\s*)/g, ""), "vaadin:user"),
'JavaScript' 카테고리의 다른 글
code refactoring 01 (0) | 2022.10.05 |
---|---|
short circuit evaluation (0) | 2020.12.26 |
Type Conversion in Javascript (number, string) (0) | 2020.09.15 |
Rest parameter (0) | 2020.08.26 |
How to run your Javascript test code in Chrome (0) | 2020.07.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 프로그래머스 알고리즘
- Object type casting
- java
- repeat()
- C++
- algorithm
- substring()
- ... in Javascript
- math.abs
- compareTo()
- easy javascript algorithm
- spring boot application
- HackerRank Algorithm
- math.max
- 프로그래머스
- HashMap
- 알고리즘
- javascript
- rest parameter
- Javascript Algorithm
- Collection Framework
- 프로그래머스 알고리즘문제
- hackerrank
- equals()
- easy algorithm
- hackerrank solution
- hackerrank javascript
- code refactoring
- hackerrank javascript solution
- string class in java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함