摘要: 转载:http://www.cnblogs.com/tugenhua0707/p/4050072.html Git使用教程 一:Git是什么? Git是目前世界上最先进的分布式版本控制系统。 二:SVN与Git的最主要的区别? SVN是集中式版本控制系统,版本库是集中放在中央服务器的,而干活的时候, 阅读全文
posted @ 2017-02-13 17:11 minimal虾米 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 计算数组的极值 function smallest(array){ return Math.min.apply(Math, array); } function largest(array){ return Math.max.apply(Math, array); } smallest([0, 1, 阅读全文
posted @ 2017-02-13 11:34 minimal虾米 阅读(97) 评论(0) 推荐(0) 编辑