利用构造函数创建对象

    科技2022-09-01  120

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <script> function Star(uname, age, sex) { this.name = uname; this.age = age; this.sex = sex; } var ldh = new Star('刘德华',18,'男'); console.log(ldh.name); console.log(ldh['sex']); var zxy = new Star('张学友',19 ,'男'); console.log(zxy.name); console.log(zxy.age); </script> </body> </html>
    Processed: 0.008, SQL: 9