행복해지자
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) ..