我的字符串有问题。弹出错误"意外字符串"

时间:2014-12-29 21:57:35

标签: javascript string

var contacts = {
    'addressBook' : [
    {
        'name': 'hillisha'
        'email': 'hill@example.com',
    },
    {
        'name': 'neil'
        'email': 'neil@example.com',
    },
    {
        'name': 'brian'
        'email': 'brian@example.com',
    },
    {
        'name': 'matt'
        'email': 'matt@example.com',
    },
    {
        'name': 'mike'
        'email': 'mike@example.com',
    }

    ]
};

错误弹出说意外的字符串。不确定为什么,需要帮助。我试图运行一个相当简单的循环,它不会期待字符串。

1 个答案:

答案 0 :(得分:3)

在每个姓名之后,您都会错过逗号。数组内对象的元素。请注意,在电子邮件'之后的最后一个逗号实际上是可选的。