-
[ES6 정리] 8. Swapping & Skipping공부(프로그래밍)/Javascript 2019. 9. 5. 11:15
1. Swapping
Swapping은 변수 선언할 때 값이 잘못들어가거나 혹은 값을 바꿔야하는 상황이 생길때 사용하면 편리하다
let first = "3rd"; let third = "1st"; console.log(first, third); [first, third] = [third, first] console.log(first, third);
아 그리고 const로 선언하면 값이 변경되지 않으므로 저 경우에는 let으로 선언할 경우에 가능하다.!
이걸 보고 있으니까 자바 할때 tmp에 값 넣어서 Swapping 했던게 갑자기 생각난다
2. Skipping
Skipping은 Array에서 특정 값을 생략할때 사용하는 방법이다
const numbers = ["1st", "2nd", "3rd", "4th", "5th"]; const [,,,$4th, $5th] = numbers; console.log($4th, $5th);
원래대로라면 numbers에서 불러올 때 배열 전체 변수를 선언해줘서 값을 불러와야하는데 단순히 , 만 붙여서 생략하고 출력이 가능하다
'공부(프로그래밍) > Javascript' 카테고리의 다른 글
[ES6 정리] Rest, Spread, Destructure 활용 (0) 2019.09.05 [ES6 정리] 9. Rest & Spread (0) 2019.09.05 [ES6 정리] 7. Shorthand Property(단축 속성명) (0) 2019.09.05 [ES6 정리] 6. Destructuring (0) 2019.09.05 [ES6 정리] 5. Array (0) 2019.09.04