# Redis configuration file example. #Redis 配置文件的示例 #如何利用配置文件启动Redis # Note that in order to read the configuration file, Redis must be# started with the file path as first argument: # 注意:为了读取配置文件 #,Redis必须是以第一个参数作为配置文件# ./redis-server /path/to/redis.…
前言: 我们在ES5都使用var来声明常量跟变量,ES6使用了最新的语法,使用let跟const分别声明.一.let命令: let命令是用于声明变量块级作用域 1. { let a = 10; var b = 10; } console.log(a); // ReferenceError: a is not defined. console.log(b); // 10 a未定义,是因为let只是在它所在的块作用域执行.{}为块作用域.而b没有影响. 2. for (let i = 0; i <…