René's URL Explorer Experiment


Title: JavaScript设计模式 - learning logs · Issue #7 · K0II/JavaScript · GitHub

Open Graph Title: JavaScript设计模式 - learning logs · Issue #7 · K0II/JavaScript

X Title: JavaScript设计模式 - learning logs · Issue #7 · K0II/JavaScript

Description: 类 // 一个类 var checkObject = function() { this.checkName = function() {}; this.checkEmail = function() {}; this.checkPassword = function() {}; }; var a = new checkObject(); a.checkName(); 所有通过this定义的方法放在了函数内部,所以每一次通过new关键字创建新对象时候,新创建的对象都会对...

Open Graph Description: 类 // 一个类 var checkObject = function() { this.checkName = function() {}; this.checkEmail = function() {}; this.checkPassword = function() {}; }; var a = new checkObject(); a.checkName(); 所有通过this定义的...

X Description: 类 // 一个类 var checkObject = function() { this.checkName = function() {}; this.checkEmail = function() {}; this.checkPassword = function() {}; }; var a = new checkObject(); a.checkName(); 所有通过this定义的...

Opengraph URL: https://github.com/K0II/JavaScript/issues/7

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"JavaScript设计模式 - learning logs","articleBody":"### 类\n\n``` javascript\n// 一个类\nvar checkObject = function() {\n    this.checkName = function() {};\n    this.checkEmail = function() {};\n    this.checkPassword = function() {};\n};\n\nvar a = new checkObject();\na.checkName();\n```\n\n所有通过`this`定义的方法放在了函数内部,所以每一次通过`new`关键字创建新对象时候,新创建的对象都会对类的`this`上的属性进行复制。所以这些新创建的对象都会有自己的一套方法,造成的消耗很奢侈。\n\n``` javascript\nvar checkObject = function() {};\n\ncheckObject.prototype = {\n    checkName: function() {\n        // 验证姓名\n        return this;\n    },\n    checkEmail: function() {\n        // 验证邮箱\n        return this;\n    },\n    checkPassword: function() {\n        // 验证密码\n        return this;\n    }\n}\n\nvar a = new checkObject();\na.checkName().checkEmail().checkPassword();\n```\n\nthis指向当前对象(a)\n\n\u003e 有一些方法没有返回值,例如,一些设置或修改对象的某个状态却不返回任何值的方法。\n\u003e 让这些方法返回`this`而不是`undefined`(没有`return`默认返回`undefined`),就可以启动级联(Cascade)。\n\u003e 让每一方法都返回该对象,所以每次调用的结果可以被下一次调用所用。\n\u003e 一个接口没必要一次做太多事\n\n```\nvar Book = function (bookId, bookName, price) {\n    var num = 1;  //  私有属性\n    function checkId () {};  //  私有方法\n\n    // 对象共有属性\n    this.bookId = bookId;\n\n    // 对象共有方法\n    this.copy = function () {};\n    // 特权方法\n    this.getName = function() {};\n    this.getPrice = function() {};\n    this.setName = function() {};\n    this.setPrice = function() {};\n\n    // 构造器\n    this.setName(bookName);\n    this.setPrice(price);\n};\n\nvar aBook = new Book(01,'YOU DON`T KNOW JS',49);\n```\n","author":{"url":"https://github.com/K0II","@type":"Person","name":"K0II"},"datePublished":"2016-06-10T11:55:15.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/7/JavaScript/issues/7"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:159a649e-d8ed-8bf1-f297-384a9fb94aac
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE3B0:162B2:747F331:A3BDC9C:6A5025EA
html-safe-noncea3781f5c0e058f6ef6b95f06c3236b6db117e6cfcdb02fc07a1e11c52bc75ad8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFM0IwOjE2MkIyOjc0N0YzMzE6QTNCREM5Qzo2QTUwMjVFQSIsInZpc2l0b3JfaWQiOiI1MTIxMTkxNTg5OTA3MTAyNTAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmaccb3331c13234168376117f4dd8742c364a711bcd324e9fa0f16c8f0e030c59f7
hovercard-subject-tagissue:159619160
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/K0II/JavaScript/7/issue_layout
twitter:imagehttps://opengraph.githubassets.com/447a15a005a500eff0f5430d9ab923d09705d41a6a96680ab5103293629483a5/K0II/JavaScript/issues/7
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/447a15a005a500eff0f5430d9ab923d09705d41a6a96680ab5103293629483a5/K0II/JavaScript/issues/7
og:image:alt类 // 一个类 var checkObject = function() { this.checkName = function() {}; this.checkEmail = function() {}; this.checkPassword = function() {}; }; var a = new checkObject(); a.checkName(); 所有通过this定义的...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameK0II
hostnamegithub.com
expected-hostnamegithub.com
Nonea08040246389072795e3b4e7b33c6d9a0c564eee02e829a809326d67c418b069
turbo-cache-controlno-preview
go-importgithub.com/K0II/JavaScript git https://github.com/K0II/JavaScript.git
octolytics-dimension-user_id19141974
octolytics-dimension-user_loginK0II
octolytics-dimension-repository_id57857936
octolytics-dimension-repository_nwoK0II/JavaScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id57857936
octolytics-dimension-repository_network_root_nwoK0II/JavaScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released1b91b18e7330fc458dfd824c61eaed7daa830d6
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/K0II/JavaScript/issues/7#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FK0II%2FJavaScript%2Fissues%2F7
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FK0II%2FJavaScript%2Fissues%2F7
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=K0II%2FJavaScript
Reloadhttps://github.com/K0II/JavaScript/issues/7
Reloadhttps://github.com/K0II/JavaScript/issues/7
Reloadhttps://github.com/K0II/JavaScript/issues/7
K0II https://github.com/K0II
JavaScripthttps://github.com/K0II/JavaScript
Notifications https://github.com/login?return_to=%2FK0II%2FJavaScript
Fork 0 https://github.com/login?return_to=%2FK0II%2FJavaScript
Star 0 https://github.com/login?return_to=%2FK0II%2FJavaScript
Code https://github.com/K0II/JavaScript
Issues 7 https://github.com/K0II/JavaScript/issues
Pull requests 0 https://github.com/K0II/JavaScript/pulls
Actions https://github.com/K0II/JavaScript/actions
Projects https://github.com/K0II/JavaScript/projects
Security and quality 0 https://github.com/K0II/JavaScript/security
Insights https://github.com/K0II/JavaScript/pulse
Code https://github.com/K0II/JavaScript
Issues https://github.com/K0II/JavaScript/issues
Pull requests https://github.com/K0II/JavaScript/pulls
Actions https://github.com/K0II/JavaScript/actions
Projects https://github.com/K0II/JavaScript/projects
Security and quality https://github.com/K0II/JavaScript/security
Insights https://github.com/K0II/JavaScript/pulse
JavaScript设计模式 - learning logshttps://github.com/K0II/JavaScript/issues/7#top
https://github.com/K0II
K0IIhttps://github.com/K0II
on Jun 10, 2016https://github.com/K0II/JavaScript/issues/7#issue-159619160
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.