This commit is contained in:
Janis
2022-12-20 02:18:21 +01:00
parent 26f8683f69
commit 06c04efcfc
17 changed files with 395 additions and 43 deletions

9
.markdown/test2.md Normal file
View File

@@ -0,0 +1,9 @@
## Code
```js
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
```