第四节课

流程控制语句

  • 循环
    for、while、do-while
    break和continue

JS中的对象

  • 定义:对象是一组无序的相关属性和方法的集合

  • 作用:封装信息

  • 结构

    • 键值对

    • 注意点
      对象的属性值可以是函数

  • 对象&数据类型

    • 值类型:String Number Boolean Null Undefined
    • 引用类型:Object
  • 对象的分类

    • 内置对象

      • Object
      • Math
      • Data
      • String
      • Array
      • Number
      • Boolean
      • Function
    • 自定义对象
      开发人员new出来的对象实例
    • 宿主对象

      • Js的运行环境提供的对u想,目前是指浏览器提供的对象
      • BOM 、DOM
      • console
      • document
  • 内置对象

    • Object
    • Function
    • Math
      Math.PI
      Math.abs()
      Math.random()
      [0,1)
      Math.fllor()
      Math.ceil()
      Math.round()
      Math.max(a,b,c)
      Math.min(a,b,c)
      Math.pow(x,y)
      Math.sqrt()
    • Data
  • let date1 = new Date();->当前时间对象

    1. - let date2 = new Date('2021/10/16 11:09:12');
    2. - 日期的格式化
    3. - 时间戳 格林威治标准时间: 197011 000000
    • String
    • Array
    • Number
    • Boolean
    • Arguments
    • Error
    • RegExp

HTML+CSS