자바스크립트의 5가지 방식
9296 단어 objectspanishjavascriptwebdev
1. Object.keys() 프로시저 사용
let perro = {
nombre: "Scott",
color: "Negro",
macho: true,
edad: 5
};
let claves = Object.keys(perro); // claves = ["nombre", "color", "macho", "edad"]
for(let i=0; i< claves.length; i++){
let clave = claves[i];
console.log(perro[clave]);
}
/*
"Scott"
"Negro"
true
5
*/
Object.keys()
obtiene en un arreglo todas las claves del objeto en cuestión.*
2. Object.values() 속성 사용
let perro = {
nombre: "Scott",
color: "Negro",
macho: true,
edad: 5
};
let valores = Object.values(perro); // valores = ["Scott", "Negro", true, 5];
for(let i=0; i< valores.length; i++){
console.log(valores[i]);
}
/*
"Scott"
"Negro"
true
5
*/
Object.values()
obtiene los valores del objecto en cuestión.*
3. Usando un bucle for...in
let perro = {
nombre: "Scott",
color: "Negro",
macho: true,
edad: 5
};
for (let clave in perro){
console.log(perro[clave]);
}
/*
"Scott"
"Negro"
true
5
*/
4. Object.entries()와 forEach()의 프로피드 사용
let perro = {
nombre: "Scott",
color: "Negro",
macho: true,
edad: 5
};
Object.entries(perro).forEach(([key, value]) => {
console.log(value)
});
/*salida:
"Scott"
"Negro"
true
5
*/
5. Object.entries() 및...of에 대한 클러스터 프로피드 사용
let perro = {
nombre: "Scott",
color: "Negro",
macho: true,
edad: 5
};
for(const [key, value] of Object.entries(perro)){
console.log(value)
}
/*salida:
"Scott"
"Negro"
true
5
*/
결론 ✔
entries()
, forEach()
, keys()
, values()
, 등) para recorrer objetos. 루에다를 재발명하지 않습니다. Reference
이 문제에 관하여(자바스크립트의 5가지 방식), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/duxtech/5-maneras-de-iterar-un-objeto-en-javascript-jkn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)