摘要:
原型对象: var Student={ name:'cl', age:19, run:function(){ console.log(this.name+"run...."); } }; var xiaoming={ name:"xiaoming" }; var Bird={ fly:functio 阅读全文
posted @ 2021-05-11 21:58
cengxuyuan
阅读(50)
评论(0)
推荐(0)
摘要:
json是什么 早期,所有的数据传输习惯使用XML文件 # JSON(JavaScript Object Notation, JS 对象简谱)是一种轻量级的数据交换格式。 # 简洁和清晰的层次结构使得JSON成为理想的数据交换语言。 # 易于人阅读和编写,同时也易于机器解析和生成,并有效地提升网络传 阅读全文
posted @ 2021-05-11 20:59
cengxuyuan
阅读(61)
评论(0)
推荐(0)
摘要:
标准对象 typeof 123 "number" typeof '123' "string" typeof true "boolean" typeof NaN "number" typeof [] "object" typeof {} "object" typeof Math.abs "functi 阅读全文
posted @ 2021-05-11 20:29
cengxuyuan
阅读(91)
评论(2)
推荐(0)