对象

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Document</title>     <script>
        function Car(name,speed){             this,name=name;             this.speed=speed;         }
Car.prototype.showName=function(){

                console.log(this.name)             }        

        var car=new  Car("奔驰",300);         var car2=new Car("宝马",280);
        console.dir(car);         console.dir(car2);         //car2.showname();     </script> </head> <body>     </body> </html>
上一篇:23种设计模式(二)工厂模式


下一篇:jdbc一对多级联查询