摘要:
绘制一个三角形 方法一 <style> .triangle { width: 0; border-top: 50px solid red; /*上三角形*/ border-right: 50px solid yellow; /*右三角形*/ border-bottom: 50px solid pal 阅读全文
摘要:
JS面试题 JS 有哪些数据类型,如何判断这些数据类型 6种基本数据类型:String, Number ,Boolean, undefined, null, Symbol 1种引用类型:Object对象:Array(数组),Function(函数),Data(时间) 检测数据类型的4种方式 type 阅读全文