Skip to content

Commit 5cb0334

Browse files
committed
doc: 文档更新 🔥
1 parent 9be76e8 commit 5cb0334

34 files changed

Lines changed: 6903 additions & 3295 deletions

IMGS/.DS_Store

0 Bytes
Binary file not shown.

IMGS/bom_window.png

-47.2 KB
Binary file not shown.

IMGS/indedDB_create_store.png

-81.6 KB
Binary file not shown.

IMGS/indexDB_add.png

-89 KB
Binary file not shown.

IMGS/indexDB_create_db.png

-30.5 KB
Binary file not shown.

IMGS/indexDB_examples.jpg

15.1 KB
Loading

IMGS/indexDB_update.png

-93.8 KB
Binary file not shown.

README.md

Lines changed: 310 additions & 61 deletions
Large diffs are not rendered by default.

示例代码/.DS_Store

0 Bytes
Binary file not shown.

示例代码/Basics/main.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
for (let i = 0; i < 5; i++) {
2+
if (i === 2) {
3+
continue;
4+
}
5+
console.log(`i = ${i}`);
6+
}
7+
8+
if (true) {
9+
var y = 20;
10+
}
11+
console.log(y);
12+
13+
console.log(typeof []);
14+
console.log(typeof {});
15+
console.log(typeof null);
16+
17+

0 commit comments

Comments
 (0)