We have a CRM add-on for Importing Price Lists into CRM. For this tool, we expect the details to be provided in an Excel sheet. The tool reads the excel workbook provided and imports the prices. Once we had an issue with one of our customers complain…
JavaScript 字面量 和 变量 字面量:就是那些不可变的值,如1,2,100,2000,Infinity,NaN 变量: 变量,代表的当前随机分配的内存地址. 变量的值,是可变的,可以用来保存字面量. 使用 var 关键字声明一个变量. var a; //只是声明变量而没有赋值,则该变量的值是undefined var b = 666; c = 222; // 变量赋值的时候,忘了写var命令,这条语句也是有效的.// 不写var的做法,不利于表达意图,而且容易不知不觉地创建全局变量//…