-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocalStorge.js
66 lines (31 loc) · 1.54 KB
/
localStorge.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// //! local storge
// //? veri saklama
// localStorage.setItem("key" , "value")
// localStorage.setItem("name" , "talha")
// localStorage.setItem("name1" , "ali")
// localStorage.setItem("name2" , "ahmet")
// localStorage.setItem("surname" , "akça")
// localStorage.setItem("surname1" , "yalı")
// localStorage.setItem("key1" , "talha")
// //?veri okuma
// let kullanıcı = localStorage.getItem("surname")
// console.log(kullanıcı);
// //?veri silme
// localStorage.removeItem("key")
// localStorage.removeItem("name")
// //? verilerin tamamını silme
// localStorage.clear()
// //? örnk KULLANICI adını inputa girsin. gönder butonuna tıkladığında veri local storage de saklansın. kullanıcı çağır butanuna tıklayınca girilen isim console da yazdırılsın
// document.getElementById("btnSet").addEventListener("click" , () =>{
// const input = document.getElementById("input")
// localStorage.setItem("name" , input.value)
// } )
// document.getElementById("btnGet").addEventListener("click" , () => {
// console.log(localStorage.getItem("name"));
// })
// //? örnk bir alışveriş sepetindeki ögeleri local storge de saklayınız daha sonra bu veriyi saklayın
// let sepet = ["elma" , "çilek" , "muz" , "kayısı" ]
// localStorage.setItem("sepet" , JSON.stringify(sepet)) // *json.stringify array gönderme
// console.log( localStorage.getItem("sepet")) //*arry olarak çağırma
// let localSepet = localStorage.getItem("sepet") //*okuma
// console.log(JSON.parse(localSepet)); //*çağırma