1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
zhangbk1
2024-03-28 19:03:31 +08:00
parent 17953f6927
commit be9952f6bc
6 changed files with 226 additions and 14 deletions

16
test-code.md Normal file
View File

@@ -0,0 +1,16 @@
```javascript
// 小驼峰
const helloWorld = ''
// 大驼峰
const HelloWorld = ''
// 下划线 + 首字母大写
const Hello_World = ''
// 下划线 + 全小写
const hello_world = ''
// 下划线 + 全大写
const HELLO_WORLD = ''
// 小写
const helloworld = ''
// 大写
const HELLOWORLD = ''
```