0
我在編碼後用JSLint檢查我的代碼。有時我忘記將屬性設置爲數組,並將其作爲對象寫入。如何指定的對象屬性一個是一個數組,比如我有一個JS對象:如何將JS對象的JSLint屬性指定爲數組?
var writer = {
name: 'Susan',
surname: 'Gøgenheïm',
books: [
{
title: 'The Greatest Book Ever',
year: 2001
},
{
title: 'Ololo, I am',
year: 2010
}, ....
]
}
和「書籍」字段必須始終是一個數組。即使是一個簡單的對象,喜歡這裏:
var writer = {
name: 'Susan',
surname: 'Gøgenheïm',
books: [{
title: 'The Greatest Book Ever',
year: 2001
}]
}
我還沒有發現任何指令這裏http://www.jslint.com/lint.html
JSLint不會幫助,因爲它不做任何類型檢查。 – elclanrs 2014-10-27 07:19:48