- 博客(2)
- 收藏
- 关注
原创 扩展运算符
更喜欢对象扩散操作符对象.分配浅层复制对象。使用object rest操作符获取一个新对象,其中某些属性被省略。// very badconst original = { a: 1, b: 2 };const copy = Object.assign(original, { c: 3 }); // this mutates `original` ಠ_ಠdelete copy.a; // so does this// badconst original = { a: 1, b: 2 };.
2020-10-26 10:53:45
120
1
原创 生产sshkey
git bash here//终端定位到项目文件夹ssh-keygen -t rsa -C "xxx@qq.com"Generating public/private rsa key pair.//保存地址,默认就好,回车Enter file in which to save the key (/Users/healer/.ssh/id_rsa): //是否配置密码:不配置,回车Enter passphrase (empty for no passphrase): //验证密码,回车.
2020-10-23 17:09:14
94
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人