본문 바로가기
JS/JS_BASE

[기본문법 3] 데이터 구조, array, 리스트

by David.Ho 2023. 1. 30.
728x90
반응형
// 데이터 구조
// array

// // 데이터 구조가 없는 세상
// const mon = 'mon';
// const tue = 'tue';
// const wed = 'wed';
// const thu = 'thu';
// const fri = 'fri';
// const sat = 'sat';
// const sun = 'sun';

// const days0fWeek = [mon, tue, wed, thu, fri, sat, sun];

// const nonsense = [1, 2, "hello", false, null, true, undefined, 'sunho'];

// console.log(days0fWeek, nonsense)

const days0fWeek = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat'];

// Get all Array
console.log(days0fWeek);

// Get Item from Array 
console.log(days0fWeek[4]);

// Add one more day to the array
days0fWeek.push("sun");
// check array
console.log(days0fWeek);

// ex
const toBuy = ['potato', 'tomato', 'pizza'];
toBuy.push("kimbab");

// 첫번째 규칙, 시작과 끝에 대활호[]를 사용해야 한다.
// array안 각각의 항목은 쉼표로 분리되어야 한다.
// array의 목적은, 하나의 variable 안에 데이터의 list를 가지는 것
728x90
반응형

'JS > JS_BASE' 카테고리의 다른 글

[기본문법 6] return  (0) 2023.02.09
[기본문법 5] Function with JS  (0) 2023.02.08
[기본문법 4] object  (0) 2023.01.31
[기본문법 2]boolean, null, undefined  (0) 2023.01.30
[기본 문법 1] const, let, var  (0) 2023.01.30

댓글