摘要:
在版本库中的文件,即使维护在.gitignore也不管用了.要先移除. 比如Constants.java,进入到这个文件目录下: 第一步:git rm -r -n —cached Constants.java (-n是为了不删掉文件) 第二步:git rm -r —cached Constants. 阅读全文
摘要:
1、从原型入手,Array.prototype.isPrototypeOf(obj); 利用isPrototypeOf()方法,判定Array是不是在obj的原型链中,如果是,则返回true,否则false。 2、也可以从构造函数入手,obj instanceof Array 先说说 typeof 阅读全文