Skip to content

Commit ff1182f

Browse files
committed
Sample changes
1 parent 05dd1e8 commit ff1182f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

playgrounds/6.0/test.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
function bar() {
22
if (foo) {
3-
let s = 'ho\a';
3+
let str = 'hallo';
4+
foo(str);
45
}
56
}
67

7-
function foo(x) {
8-
console.log(x);
8+
function foo(str) {
9+
return str;
910
}

0 commit comments

Comments
 (0)