这是一个测试博客

下面就是代码块,添加完了代码记得设置一下它的语言类型,不然代码颜色不会高亮显示

 function size(width,height,length){
        this.width = width;
        this.height = height;
        this.length =length;
    }
    function style(color,classify){
        this.color = color;
        this.classify = classify;
    }
    function brand(name){
        this.name = name
    }
    function Car(width,height,length,color,classify,name){
        size.call(this,1900,1900,4900);
        style.call(this,"red","large");
        brand.call(this,"BMW");
        // size.apply(this,[1900,1900,4900]);
        // style.apply(this,["red","large"]);
        // brand.apply(this,["BMW"]);
    }
    var car = new Car();
    console.log(car);

这是一个大标题

这是一个h2标题

这是一个h3标题

  1. 这是标号列表1
  2. 这是编号列表2
  3. 这是编号列表3
  4. 这是编号列表4
  • 这是项目列表1
  • 这是项目列表2
  • 这是项目列表3
  • 这是项目列表4

这是第一行内容

这是第二行内容

这是一个表格
       
       
       

 

这是一个测试博客_第1张图片 这是插入的图片

你可能感兴趣的:(这是一个测试博客)