그외
[Node.js] Dictionary에서 특정 요소 삭제하기
체봄
2020. 2. 28. 22:43
var dict = {
apple: red,
banana: yellow,
melon: green
}
이러한 dict 딕셔너리에서 melon 요소를 삭제하고 싶으면 아래와 같이 입력한다.
delete dict.melon;
그러면 dict 딕셔너리는 다음과 같이 된다.
var dict = {
apple: red,
banana: yellow
}
반응형