자바스크립트에서 객체 반복
8913 단어 angularjavascriptnodereact
을 위한 . . . 안에
const object = {
name: "Dhanush",
language:"js"
}
for(const key in object){
const value = object[key]
console.log("Key: ",key)
console.log("Value: ",value)
}
// Key: name
// Value: Dhanush
// Key: language
// Value: js
객체.키()
const object = {
name: "Dhanush",
language:"js"
}
const keys = Object.keys(object)
// ['name', 'language']
keys.forEach(function(key){
const value = object[key]
console.log("Key: ",key)
console.log("Value: ",value)
})
// Key: name
// Value: Dhanush
// Key: language
// Value: js
객체.값()
const object = {
name: "Dhanush",
language:"js"
}
const values = Object.values(object)
// ['Dhanush', 'js']
values.forEach(function(value){
console.log(value)
})
// Dhanush
// js
Object.entries()
const object = {
name: "Dhanush",
language:"js"
}
const entries = Object.entries(object)
// [
// ['name', 'Dhanush'],
// ['language', 'js'],
// ]
entries.forEach(function(entry){
const key = entry[0]
const value = entry[1]
console.log("Key: ",key)
console.log("Value: ",value)
console.log(value)
})
// Key: name
// Value: Dhanush
// Key: language
// Value: js
트위터 게시물 👇
다누쉬 N
@dhanush_nehru
Javascript에서 객체 반복 🧵 🧵 🧵
오후 17:03 - 2022년 9월 6일
읽어주셔서 감사합니다 🙏
이 게시물이 마음에 드셨기를 바랍니다. 질문이 있으시면 언제든지 저에게 연락하십시오.
좋아요를 남겨주시고 더 많은 팔로우를 하세요 ✌️
Reference
이 문제에 관하여(자바스크립트에서 객체 반복), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dhanushnehru/looping-through-objects-in-javascript-41eg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)