Skip to content
On this page

값(Value)

Title
값(Value)
Category
JavaScript
Tags
Aliases
값(Value)value
Related
Created
2 years ago
Updated
last year

JavaScript에는 크게 두 가지 유형의 값, 원시 값(Primitive)객체(Object)가 있다.

  • 원시 값은 값(Value) 그대로 저장, 할당, 복사된다.
  • 객체는 참조(Reference) 저장, 할당 복사된다.

값(Value)과 변수(Variable)

JavaScript에서 원시 값은 불변한다.

js
let str = 'yellow';
str[0] = 'h';
console.log(str); // 'yellow'
let str = 'yellow';
str[0] = 'h';
console.log(str); // 'yellow'

하지만 값을 변경하는 것변수에 값을 할당하는 것을 혼동해선 안된다.

js
let str = 'yellow';
str = 'hellow';
console.log(str); // 'hellow'
let str = 'yellow';
str = 'hellow';
console.log(str); // 'hellow'

Variables are like wires

"변수는 와이어와 같다" - Just JavaScript

References

tags

#javascript #terms #glossary

Released under the MIT License.