企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
![](https://img.kancloud.cn/90/1b/901b92be8011d3c7c062c4aba434070a_2086x888.png) ``` let Test = 100; console.log(test); //=>Uncaught ReferenceError: test is not defined \*/ // 学生信息 let studentInfomation = { name: '珠峰培训' }; let studentInfo = {}; // 不规范的 let xueshengInfo; let xueshengxinxi; let xsxx; // 基于$开头:一般代表使用JQ或者其它使用$的类库获取的内容 let $box; // 基于_开头:一般代表是全局或者公共的变量 let _box = {}; // 基于数字区分相似名称的变量 let box1 = 10; let box2 = 20; // 数字不能作为开头 // let 2box = 10; // 想要分隔单词,可以使用_或者驼峰,但是不能是- // let box-list; let box_list; let boxList; // 虽然不会报错,但是强烈不推荐 let 盒子 = 100; console.log(盒子); ``` ![](https://img.kancloud.cn/4e/91/4e91ba9ef3fdb39c838ba01b9a55011f_1472x718.png) ![](https://img.kancloud.cn/a3/17/a31745edc011ce81d4f9dd91014d48ec_1350x382.png) ![](https://img.kancloud.cn/bc/f7/bcf7ea2844ff3e0a411bd1602c4c61b2_1520x902.png)