标签: json
当我使用此代码对JSON数组进行排序时,我收到NAN错误。
people.sort(function(a, b) { a = a.title.toLowerCase(); b = b.title.toLowerCase(); return a-b; })