해나아부지 개발일지

Mutable vs Immutable 본문

Developers/JavaScript

Mutable vs Immutable

__APPA 2020. 4. 28. 23:37

큰 범주로 나누면 표와 같은 속성으로 나눌 수 있다

Mutable Immutable

 

Objects 

Arrays 

Functions 

Classes 

Maps

Sets

 

 

Numbers 

Strings 

Null

Undefined

Booleans

 

Array의 Method 들 중에 

1) Mutable(원본의 요소가 바뀌는 Method)

array.pop() array.push() array.shift() array.unshift() array.splice()

2) Immutable

 1)Method 제외 하고 거의 다라고 볼 수 있다(예외 케이스 몇 개 제외)

'Developers > JavaScript' 카테고리의 다른 글

Math.Random()을 이용한 임의의 정수, 문자열 리턴하기  (0) 2020.05.05
map vs filter vs reduce  (0) 2020.04.29
알쓸신잡(1)  (0) 2020.04.28
1-4. 배열(Array)  (0) 2020.04.25
1-3.함수(functions)  (0) 2020.04.16
Comments