본문 바로가기
JS/JS_BASE

[기본문법 4] object

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

// object

const player = {
    name: 'sun ho',
    points: 10,
    fat: true,
};

console.log(player);
console.log(player.name);
console.log(player["fat"]);

//update
player.fat = false;
console.log(player["fat"]);
// 단, 우리는 const를 수정하는 것이 아니다 그건 수정할 수 없다. 단지, object안에 무언가를 수정

//add
player.lastName = 'potato';
console.log(player);

728x90
반응형

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

[기본문법 6] return  (0) 2023.02.09
[기본문법 5] Function with JS  (0) 2023.02.08
[기본문법 3] 데이터 구조, array, 리스트  (0) 2023.01.30
[기본문법 2]boolean, null, undefined  (0) 2023.01.30
[기본 문법 1] const, let, var  (0) 2023.01.30

댓글