如何遍历javascript中的对象并返回特定值

时间:2018-11-23 13:20:46

标签: javascript loops javascript-objects

我们没有花太多时间在对象上,而在对象上循环的时间则少得多。我有以下问题。我需要创建一个名为dislplayBalance的函数,该函数可以将客户编号作为对象传递,它将返回余额。我们有一个与嵌套数组类似的问题,我使用了for循环,但是同样,我们没有花任何时间在对象上。

let customersObj = {
    23567: {
        'name': {
            'first': 'Ichigo',
            'last': 'Kurosaki'
        }, 
        'customerID': 23567,
        'balance': 153677345
    },
    1234: {
        'name': {
            'first': 'Gin',
            'last': 'Ichimaru'
        }, 
        'customerID': 1234,
        'balance': 1235412356
    },
    1531: {
        'name': {
            'first': 'Shunsui',
            'last': 'Kyoraku'
        }, 
        'customerID': 1531,
        'balance': 65432467
    },
    543: {
        'name': {
            'first': 'Kisuke',
            'last': 'Urahara'
        }, 
        'customerID': 543,
        'balance': 63463723562
    }
};

0 个答案:

没有答案