From f1c953c197fb45d5458446b46ea4a19464ef21d9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=83=AD=E6=82=A6=E8=BF=8E?=
<12071374+guo-yueying@user.noreply.gitee.com>
Date: Fri, 29 Dec 2023 04:48:40 +0000
Subject: [PATCH] =?UTF-8?q?=E4=BD=9C=E4=B8=9A?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: 郭悦迎 <12071374+guo-yueying@user.noreply.gitee.com>
---
...54\345\234\260\345\255\230\345\202\250.md" | 115 ++++++++++++++++++
1 file changed, 115 insertions(+)
create mode 100644 "39 \351\203\255\346\202\246\350\277\216/20231129 \346\234\254\345\234\260\345\255\230\345\202\250.md"
diff --git "a/39 \351\203\255\346\202\246\350\277\216/20231129 \346\234\254\345\234\260\345\255\230\345\202\250.md" "b/39 \351\203\255\346\202\246\350\277\216/20231129 \346\234\254\345\234\260\345\255\230\345\202\250.md"
new file mode 100644
index 0000000..6674de6
--- /dev/null
+++ "b/39 \351\203\255\346\202\246\350\277\216/20231129 \346\234\254\345\234\260\345\255\230\345\202\250.md"
@@ -0,0 +1,115 @@
+## 复习笔记
+
+1. 清空整个 localStorage
+
+ localStorage.clear()
+
+2. 本地存储只能存放字符串,复杂的数据要先转换成字符串,再存入
+
+ JSON.stringify(复杂数据)
+
+3. 从本地取复杂数据转成的字符串,不能直接用,要重新还原回对象
+
+ JSON.PARSE(字符串)
+
+4. 数组的常用操作方法,一种是用遍历数据,有返回值;另一种是用指定的字符串,拼接数组元素
+
+5. 如果用变量做属性名,只能用 [ ] 括号
+
+6. 本地储存
+
+ 增 localStorage.setItem()
+
+ 获取 localStorage.getItem()
+
+ 删 localStorage.remove()
+
+ 查,同增 localStorage.setItem()
+
+------
+
+## 作业
+
+```html
+
+```
\ No newline at end of file
--
Gitee