我在js中有以下代码。如果我使用静态数组,一切正常。否则我得到:
未捕获的类型错误:myArray.push 不是函数
function test(){
var myArray = localStorage.getItem('articles') ;
//myArray=[1,4,5];
needle = 2 ,
myArray.push(needle);
localStorage.setItem('articles', JSON.stringify(myArray))
console.log(localStorage.getItem('articles'));
}
慕容森