์๋ฐ์คํฌ๋ฆฝํธ๋ ๋์ ์ธ์ด๋ก ๋ณ์ ํ์
์ ๋ฏธ๋ฆฌ ์ ์ธํ ํ์๊ฐ ์์ต๋๋ค.
์ด๋ค ๋ฐ์ดํฐ ํ์
์ด ์๋์ง ํ๋ฒ ํ์ธํด๋ด
๋๋ค.๐ค
1. ๊ธฐ๋ณธ ์๋ฃํ
1) Boolean
- true/false ๋๊ฐ์ง ๊ฐ์ ๊ฐ์ง ์ ์์ต๋๋ค.
- ํ๋ก๊ทธ๋๋ฐ ์ ๋
ผ๋ฆฌ์ ์ผ๋ก ์ฐธ/๊ฑฐ์ง์ ํ๋จํ ํ์๊ฐ ์์๋ ์ฌ์ฉํฉ๋๋ค.
- ์) ์ฌ์ฉ์๊ฐ ์
๋ ฅํ ๊ฐ์ด 10 ์ด์์ด๋ฉด ์ฐธ, ์๋๋ฉด ๊ฑฐ์ง (๋น๊ต์ฐ์ฐ์)
const boolT = true;
const boolF = false;
console.log(boolT,boolF);
/*
์คํ ๊ฒฐ๊ณผ
===============================
true false
===============================
*/
2) Null
- ๋ณ์๊ฐ์ด ๋น์ด์๋ค๋ ํ๊ธฐ๋ฅผ ํ๊ธฐ ์ํ ์๋ฃํ์
๋๋ค.
- undefined ํ์ ๋ฉ๋ชจ๋ฆฌ์ ์๋ฌด๋ฐ ๋ฐ์ดํฐ๊ฐ ์์ง๋ง, null ์๋ฃํ์ ๊ฒฝ์ฐ "Null"ํ์ด ๊ฐ์ผ๋ก ์ถ๋ ฅ๋ฉ๋๋ค.
let nullType = null;
console.log(nullType)
/*
์คํ ๊ฒฐ๊ณผ
===============================
null
===============================
*/
3) Undefined
- ๋ณ์๋ช
๋ง ์ ์ธ๋์ด์๊ณ , ๋ณ์๊ฐ์ด ์๋ ์๋ฃํ์
๋๋ค.
- ๋ฉ๋ชจ๋ฆฌ ๊ณต๊ฐ์ ํ๋ณด ๋์ด์์ง๋ง ์ค์ ๋ก ๋ฐ์ดํฐ๊ฐ ๋ค์ด๊ฐ์์ง ์์ต๋๋ค.
let undefinedType
console.log(undefinedType)
//๋ณ์๊ฐ์ ์ง์ undefined๋ฅผ ๋ฃ์ ์ ์์ต๋๋ค.
// let undefinedType = undefined;
/*
์คํ ๊ฒฐ๊ณผ
===============================
undefined
===============================
*/
4) Number
- ์ซ์ ์๋ฃํ์
๋๋ค.
- ์๋ฐ์คํฌ๋ฆฝํธ์์๋ ์ ์, ์ค์๋ฅผ ๊ตฌ๋ถํ์ง ์์ต๋๋ค. (์ ํํ๋ ์ ์๋ง์ ์ํ ์๋ฃํ์ด ์์ต๋๋ค.)
const floatingType = 123123.123123;
console.log(floatingType);
/*
์คํ ๊ฒฐ๊ณผ
===============================
123123.123123
===============================
*/
5) String
- ๋ฌธ์ ์๋ฃํ์
๋๋ค.
const stringType = "์ฌ๊ณผ๋ ๋ง์์ด";
console.log(stringType);
/*
์คํ ๊ฒฐ๊ณผ
===============================
์ฌ๊ณผ๋ ๋ง์์ด
===============================
*/
2. Array
๋ฐฐ์ด์ ์ธ๋ฑ์ค๋ฅผ ๊ฐ์ง๋ ์ฌ๋ฌ๊ฐ์ ๋ฐ์ดํฐ๋ฅผ ์ ์ฅํ ์ ์๋ ์๋ฃ ๊ตฌ์กฐ์
๋๋ค.
ํ๋์ ๋ฐฐ์ด์ ์ฌ๋ฌ ์๋ฃํ์ ๋ฐ์ดํฐ๋ฅผ ์ ์ฅํ ์ ์์ต๋๋ค.
const arraySample = ["judy", 30, true, null]
console.log (arraySample)
/*
์คํ ๊ฒฐ๊ณผ
===============================
[ 'judy', 30, true, null ]
===============================
*/
๋ฐฐ์ด์ ๋ฐ์ดํฐ๋ ์์๋๋ก ์ ์ฅ๋๋ฉฐ, ๋ฐ์ดํฐ๋ ์ธ๋ฑ์ค๋ฅผ ์ด์ฉํด์ ์ ๊ทผํฉ๋๋ค.
const arraySample = ["judy", 30, true, null]
console.log (arraySample[0]);
console.log (arraySample[1]);
/*
์คํ ๊ฒฐ๊ณผ
===============================
judy
30
===============================
*/
3. Object
๊ฐ์ฒด๋ ํค(key)์ ๊ฐ(value)๋ก ๊ตฌ์ฑ๋ Property์ ์งํฉ์
๋๋ค.
์ํ๋ ๋ฐ์ดํฐ ์ ๋ถ ๋ค ๋ฃ์ ์ ์์ต๋๋ค.
const objectSample = {
name: "๊น์ด๋กฑ",
age: 30,
nationality: "korean",
favoriteFoods: ["๊น์น","๋์ฅ์ฐ๊ฐ","๊ณ๋ํ๋ผ์ด","์คํธ๊ตฌ์ด"],
family: [
{
father: "๊น๋์ฃผ",age: 63
},
{
mom:"์ ํ์ธ",age: 62
},
{
sister:"๊น๋ค์", age:26
}
],
character: undefined
}
console.log(objectSample)
/*
์คํ ๊ฒฐ๊ณผ
===============================
{
name: '๊น์ด๋กฑ',
age: 30,
nationality: 'korean',
favoriteFoods: [ '๊น์น', '๋์ฅ์ฐ๊ฐ', '๊ณ๋ํ๋ผ์ด', '์คํธ๊ตฌ์ด' ],
family: [
{ father: '๊น๋์ฃผ', age: 63 },
{ mom: '์ ํ์ธ', age: 62 },
{ sister: '๊น๋ค์', age: 26 }
],
character: undefined
}
===============================
*/
์ค๋ธ์ ํธ ๋ด์ ๋ฐ์ดํฐ๋ ์๋์ ๊ฐ์ด ํ์ธํ ์ ์์ต๋๋ค.
const objectSample = {
name: "๊น์ด๋กฑ",
age: 30,
nationality: "korean",
favoriteFoods: ["๊น์น","๋์ฅ์ฐ๊ฐ","๊ณ๋ํ๋ผ์ด","์คํธ๊ตฌ์ด"],
family: [
{
father: "๊น๋์ฃผ",age: 63
},
{
mom:"์ ํ์ธ",age: 62
},
{
sister:"๊น๋ค์", age:26
}
],
character: undefined
}
console.log(objectSample.family[1].age)
/*
์คํ ๊ฒฐ๊ณผ
===============================
62
===============================
*/
๊ณต์ํํ์ด์ง :developer.mozilla.org/ko/docs/Web/JavaScript/Data_structures
์๋ฐ์คํฌ๋ฆฝํธ์ ์๋ฃํ - JavaScript | MDN
์๋ฐ์คํฌ๋ฆฝํธ์ ์๋ฃํ ๋ชจ๋ ํ๋ก๊ทธ๋๋ฐ ์ธ์ด๋ ๋ด์ฅ ์๋ฃํ์ด ์์ง๋ง, ์ข ์ข ์ด๋ฌํ ๋ด์ฅ ์๋ฃํ์ ์ธ์ด๋ง๋ค ๋ค๋ฅด๋ค. ์ด ๋ฌธ์์์๋ ์๋ฐ์คํฌ๋ฆฝํธ์ ๋ด์ฅ ์๋ฃํ๊ณผ, ๋ด์ฅ ์๋ฃํ์์ ์ฌ์ฉํ ์
developer.mozilla.org