菜鸟的博客

纵有疾风起,人生不言弃。

导航

js函数,js对象

 1 定义一个函数
 2 1. function fuctionName(参数1,参数2){
 3     //要执行的代码
 4     return 要返回的结果
 5 }
 6 
 7 
 8 2. var functionName = function(a,b)
 9 
10 
11 ES6 箭头函数:(...) =>{...}
12 arr.forEach((e)=>{
13     console.log(e);
14 })
基础对象模型:
Array
String
JSON
 
BOM浏览器对象模型
DOM文档对象模型

自定义对象:
var 对象名 = {
    属性名1:属性值1,
    属性名2:属性值2,
    属性名3:属性值3,
    函数名称:function(形参列表){}
};
例:
var user = {
    name:"tom",
    age:20,
    gender:"Male",
    eat:function(){
        console.log("用餐~");
    }
    drink(){//简化类型
        alert("喝~");
    }
};
user.name;
user.eat();

 

posted on 2023-10-09 13:21  hhmzd233  阅读(4)  评论(0编辑  收藏  举报