행복해지자
article thumbnail
JS - ES6 문법 파헤치기 (2)
JS 2023. 3. 9. 20:24

오늘은 자바스크립트의 클래스에 대해서 알아볼 것이다ㅏ 먼저 알아볼 것은 자바스크립트를 나누는 법이다 //example.js export const data = [1, 2, 3]; //chellenge.js export const add = (a, b) => a + b; //index.js import { data } from "./example"; let updatedData = data; updatedData.push(5); console.log(updatedData); console.log(add(1, 10)); //11 이런 식으로 불러와서 사용할 수 있다 함수, 변수모두 가능하다. 클래스 Class 문법을 알아보자 export class Animal { constructor(type, legs) ..

article thumbnail
JS - ES6 문법 파헤치기 (1)
JS 2023. 3. 9. 17:50

1. destructuring (구조 분해 할당) const player = { name: "GwonSewon", club: "proteen", address:{ city:"Busan" } } console.log(player.address.city) const {name, club, address:{city}} = player; console.log(name,club,city)//destructuring console.log(`${name} lives in ${city}!`)//template literal 예제코드 구조 분해 할당은 구조체(Object),배열(Array)등을 변수에 나누어 담는 것을 말한다. 이코드를 쓰면 조금 더 코드가 깔끔해지고 보기 쉬워진다 마지막 Console.log()는 Te..