Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function test(){
  2. var myArray = localStorage.getItem('articles') ;
  3. //myArray=[1,4,5];
  4. needle = 2 ,
  5. myArray.push(needle);
  6. localStorage.setItem('articles', JSON.stringify(myArray))
  7. console.log(localStorage.getItem('articles'));
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement