- 博客(3)
- 收藏
- 关注
原创 typeScript基础总结
typeScript 安装 使用 npm / cnpm / yarn 进行全局安装 查看版本 tsc -v 执行 .ts 文件 tsc test.ts 执行完成后会生成 .js 文件 自动执行 .ts 文件 使用ts-node直接运行ts文件 npm install -d ts-node vscode 自动编译ts文件的方式 在项目文件根目录中运行 tsc --init,生成一个sconfig.json 文件 修改config文件,找到其中的outDir属性并解除注释 任务运行监视tsc,
2020-10-29 18:08:54 118
原创 nodejs内置模块
fs 文件系统 fs.readFile fs.readFile(path,callback) 异步读取文件 fs.writeFile fs.writeFile(path,data,callback) 写入文件 fs.open fs.open(path,data,callback) 打开文件 fs.unlink fs.unlink(path,callback) 删除文件 fs.mkdir fs.mkdir(path,option,callback) 创建文件 path 模块 path.extnam
2020-07-31 10:37:02 166 1
原创 JS常用对象和属性
(String)字符串对象 字符串对象属性 string.length 返回数组长度 字符串对象属方法 string.charAt (index) 返回指定位置的字符 index: 必需,表示字符串中某个位置的数字,即字符在字符串中的位置。 string.concat (string1, string2, …, stringX) 拼接多个字符串 string1, string2, …, stringX: 必需,将被连接为一个字符串的一个或多个字符串对象。 string.indexOf (s
2020-07-30 14:55:16 126
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人