{"id":795,"date":"2017-03-20T11:00:33","date_gmt":"2017-03-20T03:00:33","guid":{"rendered":"http:\/\/feizhaojun.com\/?p=795"},"modified":"2017-03-20T11:01:02","modified_gmt":"2017-03-20T03:01:02","slug":"javascript%e5%88%9b%e5%bb%ba%e5%af%b9%e8%b1%a1%e7%9a%84%e6%96%b9%e6%b3%95","status":"publish","type":"post","link":"https:\/\/feizhaojun.com\/?p=795","title":{"rendered":"JavaScript\u521b\u5efa\u5bf9\u8c61\u7684\u65b9\u6cd5"},"content":{"rendered":"<p>[javascript]<\/p>\n<p>\/\/\u5de5\u5382\u6a21\u5f0f<br \/>\nfunction Person1(name, age, job){<br \/>\n\tvar o = new Object();<br \/>\n\to.name = name;<br \/>\n\to.age = age;<br \/>\n\to.job = job;<br \/>\n\to.sayName = function(){<br \/>\n\t\talert(this.name);<br \/>\n\t};<br \/>\n\treturn o;<br \/>\n}<\/p>\n<p>var p1 = Person1('Mukti',30,'FE Engineer');<\/p>\n<p>\/\/\u6784\u9020\u51fd\u6570\u6a21\u5f0f<br \/>\nfunction Person2(name, age, job){<br \/>\n\tthis.name = name;<br \/>\n\tthis.age = age;<br \/>\n\tthis.job = job;<br \/>\n\tthis.sayName = function(){<br \/>\n\t\talert(this.name);<br \/>\n\t};<br \/>\n}<\/p>\n<p>var p2 = new Person2('Mukti',30,'FE Engineer');<\/p>\n<p>\/\/ \u539f\u578b\u6a21\u5f0f<br \/>\nfunction Person3(){}<\/p>\n<p>Person3.prototype.name = 'Mukti';<br \/>\nPerson3.prototype.age = 29;<br \/>\nPerson3.prototype.job = 'FE Engineer';<br \/>\nPerson3.prototype.sayName = function(){<br \/>\n\talert(this.name);<br \/>\n};<\/p>\n<p>var p3 = new Person3();<\/p>\n<p>\/\/ \u7ec4\u5408\u6784\u9020\u51fd\u6570\u6a21\u5f0f\u548c\u539f\u578b\u6a21\u5f0f<br \/>\nfunction Person4(name, age, job){<br \/>\n\tthis.name = name;<br \/>\n\tthis.age = age;<br \/>\n\tthis.job = job;<br \/>\n\tthis.friends = ['Laura','Faust'];<br \/>\n}<br \/>\nPerson4.prototype = {<br \/>\n\tconstructor:Person4,<br \/>\n\tsayName:function(){<br \/>\n\t\talert(this.name);<br \/>\n\t}<br \/>\n}<\/p>\n<p>\/\/ \u52a8\u6001\u539f\u578b\u6a21\u5f0f<br \/>\nfunction Person5(name, age, job){<br \/>\n\tthis.name = name;<br \/>\n\tthis.age = age;<br \/>\n\tthis.job = job;<br \/>\n\tif(typeof this.sayName != 'function'){<br \/>\n\t\tPerson5.prototype.sayName = function(){<br \/>\n\t\t\talert(this.name);<br \/>\n\t\t}<br \/>\n\t}<br \/>\n}<\/p>\n<p>\/\/ \u5bc4\u751f\u6784\u9020\u51fd\u6570\u6a21\u5f0f<br \/>\nfunction Person6(name, age, job){<br \/>\n\tvar o = Object();<br \/>\n\to.name = name;<br \/>\n\to.age = age;<br \/>\n\to.job = job;<br \/>\n\to.sayName = function(){<br \/>\n\t\talert(this.name);<br \/>\n\t}<br \/>\n\treturn o;<br \/>\n}<\/p>\n<p>\/\/ \u7a33\u59a5\u6784\u9020\u51fd\u6570\u6a21\u5f0f<\/p>\n<p>[\/javascript]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[javascript] \/\/\u5de5\u5382\u6a21\u5f0f function Person1(name, age, job){ var o &#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3,5],"tags":[],"class_list":["post-795","post","type-post","status-publish","format-standard","hentry","category-fe","category-javascript"],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/feizhaojun.com\/index.php?rest_route=\/wp\/v2\/posts\/795","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/feizhaojun.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/feizhaojun.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/feizhaojun.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/feizhaojun.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=795"}],"version-history":[{"count":2,"href":"https:\/\/feizhaojun.com\/index.php?rest_route=\/wp\/v2\/posts\/795\/revisions"}],"predecessor-version":[{"id":797,"href":"https:\/\/feizhaojun.com\/index.php?rest_route=\/wp\/v2\/posts\/795\/revisions\/797"}],"wp:attachment":[{"href":"https:\/\/feizhaojun.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=795"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/feizhaojun.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=795"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/feizhaojun.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=795"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}