📌  相关文章
📜  如何从嵌套对象中仅获取属性名称键 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:13.305000             🧑  作者: Mango

代码示例1
const person = {
    name: 'labib',
    age: 22,
    job: 'web-developer',
    frieds: ['ahsik', 'abir', 'alvi', 'hanafi'],
    childList: {
        firstChild: 'Salman',
        secondChild: 'Rafi',
        thirdChild: 'Anfi'
    }
}
const getKeys = Object.keys(person); //use keys method on object
console.log(getKeys)
//Expected output:
//[ 'name', 'age', 'job', 'frieds', 'childList' ]