After following, you can keep track of his dynamic information in a timely manner
Courses in the relevant section:Data classification methods: ordered lists and unordered lists
倒叙 start=“”3“”设置起始序号
2021-12-210个赞
Courses in the relevant section:Basic syntax of JavaScript (identifiers/variables)
var name="zhi" name
2021-12-180个赞
Courses in the relevant section:JavaScript data types
var x typeof x "undefined"
2021-12-180个赞
Courses in the relevant section:Mutual conversion of data types in JavaScript
Boolean("123") true var a="134" undefined var b=Boolean(a) undefined
2021-12-180个赞
Courses in the relevant section:Overview of operators in JavaScript
var x=8,y=9 undefined x==8&&y==8 false x==8&&y>8 true x==8||y==8 true !(x==8||y==8) false
2021-12-180个赞
Courses in the relevant section:JavaScript array type (Array)
var a=[1,3,5,2] undefined a (4) [1, 3, 5, 2] a[3] 2 var b=new Array(8,8,6,7,6) undefined b (5) [8, 8, 6, 7, 6] b[4] 6
2021-12-180个赞