摘要:
let a = 1let b = 2let c = 3// 满足a == 1 再去判断 b == 2 最后执行括号内的--与++操作a == 1 && b == 2 && (--c && ++a)console.log('ccccccccccc::'+c)console.log('aaaaaaaaa 阅读全文
摘要:
使用idea的git插件控制代码分支合并时,由于操作不当,报错了,控制台报错如下: cant checkout because of unmerged files,you have to resolve all merge conflicts before checkout. 仔细回想报错的起因,经 阅读全文