Skip to content

Commit 90a6f14

Browse files
committed
init
0 parents  commit 90a6f14

File tree

5 files changed

+963
-0
lines changed

5 files changed

+963
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.idea
3+
.vscode
4+
dist
5+
.DS_Store

js.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const fn = () => {
2+
let a = 16
3+
let b = 84
4+
console.log(a + b)
5+
}
6+
fn()

0 commit comments

Comments
 (0)