-
[TIL] Algorithm 14Develope/Algorithm 2020. 7. 28. 12:51
◎ 문제 8: 객체의 키 이름 중복
자바스크립트 객체를 다음과 같이 만들었다.
출력값을 입력하시오. (출력값은 공백을 넣지 않습니다.)
var d = { 'height':180, 'weight':78, 'weight':84, 'temperature':36, 'eyesight':1 }; console.log(d['weight']);
◎ 정답
- 84
◎ 해설
- 객체 키 이름이 중복이 되면 마지막 키 이름의 값이 출력된다.
'Develope > Algorithm' 카테고리의 다른 글
[TIL] Algorithm 16 (0) 2020.07.28 [TIL] Algorithm 15 (0) 2020.07.28 [TIL] Algorithm 13 (0) 2020.07.28 [TIL] Algorithm 12 (0) 2020.07.27 [TIL] Algorithm 11 (0) 2020.07.27