摘要:
type和interface的相同点: 都是用来定义对象或函数的形状;它俩都支持继承,并且可以相互继承。具体形式稍有差别。interface是通过extends实现的,type是通过&实现的。 type和interface的不同点: typeof type可以定义基本类型的别名;type TMySt 阅读全文
摘要:
/** * 最深层级数组 */ const maxDeepArray = (arr = [1,[2,4],[4], [43,2,[444,1,[54]]], [22,3,[4]], 32]) => { const length = arr.length const fillArray = new A 阅读全文