```javascript // 小驼峰 const helloWorld = '' // 大驼峰 const HelloWorld = '' // 下划线 + 首字母大写 const Hello_World = '' // 下划线 + 全小写 const hello_world = '' // 下划线 + 全大写 const HELLO_WORLD = '' // 小写 const helloworld = '' // 大写 const HELLOWORLD = '' // 加空格 const a = 'hello world' ``` ``` D:\Project\variable-conversion-vscode-extension\README.md D:\\Project\\variable-conversion-vscode-extension\\README.md D:/Project/variable-conversion-vscode-extension/README.md ```