René's URL Explorer Experiment


Title: 【JavaScript】【学习心得】学习 JavaScript 第十七天 · Issue #21 · paddingme/Learning-JavaScript · GitHub

Open Graph Title: 【JavaScript】【学习心得】学习 JavaScript 第十七天 · Issue #21 · paddingme/Learning-JavaScript

X Title: 【JavaScript】【学习心得】学习 JavaScript 第十七天 · Issue #21 · paddingme/Learning-JavaScript

Description: object ECMAScript 中的对象其实就是一组数据和功能的集合。对象可以通过 new 操作符后跟要创建的对象类型的名称来创建。而创建 Object 类型的实例并为其添加属性和(或)方法,就可以创建自定义对象。 和 Java 中的 java.lang.object 对象一样,Object 类型是所有它的实例的基础。亦即 Object 类型所具有的任何属性和方法也同样存在于更具体的对象中。 Object 的每个实例都具有下列属性: constructor: 保存这...

Open Graph Description: object ECMAScript 中的对象其实就是一组数据和功能的集合。对象可以通过 new 操作符后跟要创建的对象类型的名称来创建。而创建 Object 类型的实例并为其添加属性和(或)方法,就可以创建自定义对象。 和 Java 中的 java.lang.object 对象一样,Object 类型是所有它的实例的基础。亦即 Object 类型所具有的任何属性和方法也同样存在于更具体的对象...

X Description: object ECMAScript 中的对象其实就是一组数据和功能的集合。对象可以通过 new 操作符后跟要创建的对象类型的名称来创建。而创建 Object 类型的实例并为其添加属性和(或)方法,就可以创建自定义对象。 和 Java 中的 java.lang.object 对象一样,Object 类型是所有它的实例的基础。亦即 Object 类型所具有的任何属性和方法也同样存在于更具体的对象...

Opengraph URL: https://github.com/paddingme/Learning-JavaScript/issues/21

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"【JavaScript】【学习心得】学习 JavaScript 第十七天","articleBody":"## object\n\nECMAScript 中的对象其实就是一组数据和功能的集合。对象可以通过 `new` 操作符后跟要创建的对象类型的名称来创建。而创建 Object 类型的实例并为其添加属性和(或)方法,就可以创建自定义对象。\n\n和 Java 中的 java.lang.object 对象一样,Object 类型是所有它的实例的基础。亦即 Object 类型所具有的任何属性和方法也同样存在于更具体的对象中。\n\nObject 的每个实例都具有下列属性:\n- constructor: 保存这用于创建当前对象的函数;\n- hasOwnProperty(propertyName):用于检查给定的属性在当前对象实例中(而不是在实例的原型中)是否存在,propertyName 必须以字符串形式指定充当参数;\n- isPrototypeOf(object): 用于检查传入的对象是否是传入对象的原型\n- propertyIsEnumerable(propertyName): 用于检查给定的属性是否能够使用for-in语句来枚举;\n- toLocaleString(): 返回对象的字符串表示,该字符串与执行环境的地区对应;\n- toString(): 返回对象的字符串表示;\n- valueOf(): 返回对象的字符串、数值或布尔值表示,通常与 toString() 返回相同。\n## 位操作符\n\nECMAScirpt 中的所有数值都以IEEE-754 64 位格式存储,但位操作符并不直接操作 64 位值。而是先将 64 位的值转换成 32 位的整数,然后执行操作,最后将结果转换回64位。对于开发人员来说,由于 64 位存储格式是透明的,因此整个过程就像是只存在 32 位的整数一样。\n\n对于有符号的整数来说,32 位中的前 31 位用于表示数值。第 32 位表示数值符号。负数同样以二进制码存储,但使用二进制补码。\n\n位操作符有如下几种\n- 按位非: `~`\n- 按位与: `\u0026`\n- 按位或: `|`\n- 按位异或: `^`\n- 左移:`\u003c\u003c`\n- 右移:`\u003e\u003e`\n- 无符号左移:`\u003c\u003c\u003c`\n- 无符号右移:`\u003e\u003e\u003e`\n## 布尔操作符\n### 逻辑与\n\n在有一个操作数不是布尔值的情况下,逻辑与操作就不一定返回布尔值,此时,它遵循下列规则:\n- 若第一个操作数是对象,则返回第二个操作数;\n- 若第二个操作数是对象,则只有在第一个操作数的求值结果为 true 时才返回该对象;\n- 若两个操作数都是对象,则返回第二个操作数;\n- 若有一个操作数是 null, 则返回 null;\n- 若有一个操作数是 NaN, 则返回 NaN;\n- 若有一个操作数是 undefined, 则返回 undefined;\n\n不能在逻辑与操作中使用未定义的值。\n\n``` js\n    var found = true;\n    var result = (found \u0026\u0026 someUndefinedVariable);//这里会发生错误\n    alert (result); //这一行不会执行\n```\n\n``` js\n    var found = false;\n    var result = (found \u0026\u0026 someUndefinedVariable)//不会发生错误\n    alert (result); // 执行(\"false\")\n```\n### 逻辑或\n\n操作规则如下:\n- 如果第一个操作是对象,则返回第一个操作数;\n- 如果第一个操作数的求值结果为false, 则返回第二个操作数;\n- 如果两个操作数都是对象,则返回第二个操作对象;\n- 如果两个操作数都是 null,则返回 null;\n- 如果两个操作数都是 NaN,则返回 NaN;\n- 如果两个操作数都是 undefined,则返回 undefined;\n\n我们可以使用逻辑或的短路行为来避免为变量赋 null 或者 undefined 值,例如\n\n```\nvar myObject =  preferredObject || backupObject;\n```\n\n在这个例子中,myObject 将被赋予等号后面两个值中的一个。变量 preferredObject 中包含优先赋给变量 myObject 的值, 变量 backupObject 负责在 preferredObject 中不包含有效值情况下提供后备值。\n## 乘性操作符\n### 乘法\n\n在处理特殊值的情况下,乘法操作符遵循下列特殊的规则:\n- 若操作数是数值,执行常规的乘法计算,即如果两正数或两负数相乘结果是正数,而如果只有一个操作数有符号,那结果是负数,超过表示范围返回 Infinity 或 -Infinity;\n- 若一操作数是 NaN, 结果为 NaN;\n- 若 Infinity 与 0 相乘,结果为 NaN;\n- 若 Infinity与非 0 相乘,则结果为 Infinity 或 -Infinity;\n- 若 Infinity 与 Infinity 相乘,则结果为 Infinity;\n- 若一操作数不是数值,则在后台调用 Number() 转换,再根据上述规则计算。\n### 除法\n\n除法的特殊计算规则如下:\n- 若操作数是数值,执行常规的除法计算,即如果两正数或两负数相乘结果是正数,而如果只有一个操作数有符号,那结果是负数,超过表示范围返回 Infinity或-Infinity;\n- 若一操作数是 NaN,则结果是 NaN;\n- 若 Infinity 被 Infinity 除,结果是 NaN;\n- 若 0 被 0 除,返回 NaN;\n- 若非 0 的有限数被 0 除,结果是 Infinity 或 -Infinity;\n- 若 Infinity 被任何非0 除, 则结果是 Infinity 或 -Infinity。\n- 若一操作数不是数值,则在后台调用 Number() 转换,再根据上述规则计算。\n## 加性操作符\n### 加法\n\n如果两个操作符都是数值,则执行常规的加法计算,然后根据下列规则返回结果:\n- 如果有一个操作数是 NaN,则结果是 NaN;\n- 如果是 Infinity 加 Infinity,则结果是 Infinity;\n- 如果是 -Infinity 加 -Infinity,则结果是 -Infinity;\n- 如果是 Infinity 加 -Infinity,则结果是 NaN;\n- 如果是 +0 加 +0 ,则结果是 +0;\n- 如果是 -0 加 -0 ,则结果是 -0;\n- 如果是 +0 加 -0 ,则结果是 +0;\n  如果有一个操作数是字符,则按照如下规则进行运算:\n- 如果两个操作数都是字符串,则将第二个操作数与第一个操作数拼接起来;\n- 如果只有一个操作数是字符串,则将另一个操作数转换为字符串,然后再将两个字符串拼接起来。\n- 如果有一个操作数是对象、数值或者布尔值,则调用他们的 toString() 方法取得它们 相应的字符串,然后再根据前面的规则进行相加。对于 undefined 和 null 则分别调用 String() 并取得字符串 \"undefined\" 和 \"null\"。\n### 减法\n\n加法的运算规则如下:\n- 若两个数都是数值,则执行常规的算术减法并返回结果数值;\n- 若有一个操作数是 NaN ,则返回 NaN ;\n- 若 Infinity - Infinity ,则返回 NaN ;\n- 若 Infinity - -Infinity ,则返回 NaN ;\n- 若 -Infinity - Infinity ,则返回 -Infinity ;\n- 若 +0 - +0 则返回 +0 ;\n- 若 +0 - -0 则返回 -0 ;\n- 若 -0 - -0 则返回 +0 ;\n- 若一个操作数是字符串、布尔值、Null、Undifined,则先在后台调用 Nmuber() 将其转换为数值,再执行减法运算;\n- 若有一个操作数是对象,则调用 valueOf() 将其转换为对象的数值,若没有 valueOf(),则调用 toString() 再继续减法运算。\n## 关系操作符\n\n关系操作符运算规则如下:\n- 若两操作数都是数值,则执行数值比较;\n- 若两个操作数都是字符串,则比较两个字符串相应的字符编码值;\n- 若一个操作数是数值,则将两一个操作数转换为数值;\n- 若一个操作数是对象,则调用这个对象的 valueOf() 方法,用得到的结果按照前面的规则进行比较,如果没有 valueOf() 方法,则调用 toString() 方法进行比较;\n- 若一个操作数是布尔值,则将其转换为数值,再进行比较。\n\n注意在进行字符串比较时,实际比较的是两个字符串中对应位置的每个字符的字符编码值。经过一番比较之后,再返回一个布尔值。记住大写字母的编码值全部小于小写字母的字符编码。\n\n``` js\n    var result = \"Brick\" \u003c \"alphabet\"; //true\n    var result = \"Brick\".toLowerCase() \u003c \"alphabet\".toLowerCase(); //false\n    var result = \"23\" \u003c \"3\"; //true\n    var result = \"23\" \u003c 3://false\n    var reslut = \"a\" \u003c 3; //false \"a\"被转换为 NaN\n    var result = NaN \u003c 3; //false\n    var result = NaN \u003e= 3; //false\n```\n## 相等操作符\n### 相等操作符\n\n这两个操作符都会先转换操作数(通常称为强制转型),然后再比较它们的相等性。\n\n在转换不同的数据类型时,相等和不相等操作符遵循下列基本规则:\n- 如果有一个操作数是布尔值,则在比较相等性先将其转换为数值——false 为 0, true 为 1;\n- 如果一个操作数是字符串,另一个操作数是数值,在比较相等性先将字符串转换为数值;\n- 若一个操作数是对象,另一个不是,则调用 valueOf() 用得到的基本类型值按照前面的规则进行比较。这两个操作符在进行比较时要遵循下列\n  规则:\n  - null 和 underfined 是相等的;\n  - 要比较相等性之前,不能将 null 和 undefined 转换成其他任何值;\n  - 若一操作数是 NaN ,相等操作符返回 false ,即使两个操作符都是 NaN ,相等操作符也是返回 false 的;\n  - 若两个操作数都是对象, 则比较它们是不是同一对象,若两操作数都指向同一对象,则相等操作符返回 true。\n  \n  | 表达式 | 值 |\n  | --- | --- |\n  | null == undefined | true |\n  | \"NaN\" == NaN | false |\n  | NaN == NaN | flase |\n  | 5 == NaN | false |\n  | false == 0 | true |\n  | true == 1 | true |\n  | true == 2 | false |\n  | undefined == 0 | false |\n  | null == 0 | false |\n  | \"5\" == 5 | true |\n\n至于全等和不全等,相对于相等和不相等的区别就是未经类型转换判断相等与否\n\n```\nnull == undefined //true\nnull === undefined //false\n```\n\n由于相等和不相等操作符存在类型转换问题,而为了保持代码中数据类型的完整性,推荐使用全等和不全等操作符。\n## 逗号操作符\n\n使用逗号操作符可以在一条语句中执行多个操作,初次之外也可以用于赋值。逗号操作符总会返回表达式中的最后一项。\n## for-in 语句\n\nfor-in 语句是一种精确的迭代语句,可以用来枚举对象的属性。\n\n``` js\n    for (property in expression) statement\n```\n\nECMAScript 对象的属性没有顺序。因此,通过 for-in 循环输出的属性名的顺序是不可预测的。具体来讲,所有属性都会被返回一次,但返回的先后次序可能会因浏览器而异。若表示要迭代的对象的变量值为 null 或者 undefined ,for-in 语句会抛出错误。ECMAScript5 更正此行为,对于此种情况不抛出错误而是不再执行循环体。所以建议使用 for-in 循环前,先检测确认对象是不是 null  或者 undefined。\n## break 和 continue\n\nbreak 和 continue 语句运行在循环中用于精确的控制代码的执行。 其中, break 语句会立即退出循环,强制继续执行循环后面的语句。而 continue 语句虽然也是立即退出循环,但退出循环后从循环的顶部继续执行。\n## switch 语句\n\nswitch 语句在比较值时,使用全等操作符,不会产生类型转换。\n## 函数\n\n函数会在执行 return 语句之后停止并立即退出。return 语句也不可以不带有任何返回值,在这种情况下,函数在停止执行后将返回 underfined 值。这种用法一般用在需要提前停止函数执行而又不需要返回值的情况下。\n## 理解参数\n\nECMAScript 不介意传进函数的参数是多少个,也不在乎传进来的参数是什么数据类型。\nECMAScript 中的参数在内部时用一个数组来表示的额。函数接收的始终是这个数组,而不关心数组中包含哪些参数(如果有参数的额话)。实际上,函数体内通过 arguments 对象来访问这个参数数组,从而获取传递给函数的每一个参数。通过访问 arguments 对象的 length 属性可以获知有多少个参数传递给了函数。没有传递至的命令参数将自动被赋予 undefined 值。 ECMAScript 中的所有参数传递的都是值,不可能通过引用传递参数。\n## 没有重载\n\n如果在 ECMAScript 中定义了两个名字相同的函数,则该名字只属于后定义的函数。\n## 小结\n- ECMASript 中基本数据类型包括 Underfined、Null、Number、String、Boolean;\n- 无需指定函数的返回值,因为任何 ECMAScript 函数都可在任何时候返回任何值;\n- 未指定返回值的函数返回的是一个特殊的 undefined 值;\n- ECMAScript 中没有函数签名的概念,因为其函数参数是以一个包含零或多个值的数组的形式传递的,\n- 可以想ECMAScript 函数传递任意数量的参数,并且可以通过 arguments 对象来访问这些参数\n- 由于不存在函数签名的特性,ECMAScript 函数不能重载。\n","author":{"url":"https://github.com/paddingme","@type":"Person","name":"paddingme"},"datePublished":"2014-12-03T13:44:54.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/21/Learning-JavaScript/issues/21"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:b6bfd830-1e8b-2bde-40ee-b2b15615cd5e
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE9BA:2F6413:A694CB5:E019BF0:6A5EA930
html-safe-nonce26437ad5bf6404a730ef58655cbfc29ebceb7690300f5b4b84e0cc85251c7bbb
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFOUJBOjJGNjQxMzpBNjk0Q0I1OkUwMTlCRjA6NkE1RUE5MzAiLCJ2aXNpdG9yX2lkIjoiNzIzMTIzMjg4MjM3OTc2MTk2OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac0fe877cffd8f061c6fb6593855df3aebc721d1d804ceb426efc9485fdd2377f8
hovercard-subject-tagissue:50839215
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/paddingme/Learning-JavaScript/21/issue_layout
twitter:imagehttps://opengraph.githubassets.com/00ed4b53580397d535f381f585fab07c03a8bda6431ff9f6d22f8c2aba44cc4f/paddingme/Learning-JavaScript/issues/21
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/00ed4b53580397d535f381f585fab07c03a8bda6431ff9f6d22f8c2aba44cc4f/paddingme/Learning-JavaScript/issues/21
og:image:altobject ECMAScript 中的对象其实就是一组数据和功能的集合。对象可以通过 new 操作符后跟要创建的对象类型的名称来创建。而创建 Object 类型的实例并为其添加属性和(或)方法,就可以创建自定义对象。 和 Java 中的 java.lang.object 对象一样,Object 类型是所有它的实例的基础。亦即 Object 类型所具有的任何属性和方法也同样存在于更具体的对象...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamepaddingme
hostnamegithub.com
expected-hostnamegithub.com
None7c7e31acb6a895494e518b880f5ccf39604f7fa9a8f2f3c64145efc3b776256d
turbo-cache-controlno-preview
go-importgithub.com/paddingme/Learning-JavaScript git https://github.com/paddingme/Learning-JavaScript.git
octolytics-dimension-user_id5771087
octolytics-dimension-user_loginpaddingme
octolytics-dimension-repository_id25473884
octolytics-dimension-repository_nwopaddingme/Learning-JavaScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id25473884
octolytics-dimension-repository_network_root_nwopaddingme/Learning-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
release2d2ac9bdd71d5f53f2b731c9330677e38624e301
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/paddingme/Learning-JavaScript/issues/21#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpaddingme%2FLearning-JavaScript%2Fissues%2F21
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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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%2Fpaddingme%2FLearning-JavaScript%2Fissues%2F21
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=paddingme%2FLearning-JavaScript
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/21
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/21
Reloadhttps://github.com/paddingme/Learning-JavaScript/issues/21
paddingme https://github.com/paddingme
Learning-JavaScripthttps://github.com/paddingme/Learning-JavaScript
Notifications https://github.com/login?return_to=%2Fpaddingme%2FLearning-JavaScript
Fork 13 https://github.com/login?return_to=%2Fpaddingme%2FLearning-JavaScript
Star 28 https://github.com/login?return_to=%2Fpaddingme%2FLearning-JavaScript
Code https://github.com/paddingme/Learning-JavaScript
Issues 30 https://github.com/paddingme/Learning-JavaScript/issues
Pull requests 0 https://github.com/paddingme/Learning-JavaScript/pulls
Actions https://github.com/paddingme/Learning-JavaScript/actions
Projects https://github.com/paddingme/Learning-JavaScript/projects
Wiki https://github.com/paddingme/Learning-JavaScript/wiki
Security and quality 0 https://github.com/paddingme/Learning-JavaScript/security
Insights https://github.com/paddingme/Learning-JavaScript/pulse
Code https://github.com/paddingme/Learning-JavaScript
Issues https://github.com/paddingme/Learning-JavaScript/issues
Pull requests https://github.com/paddingme/Learning-JavaScript/pulls
Actions https://github.com/paddingme/Learning-JavaScript/actions
Projects https://github.com/paddingme/Learning-JavaScript/projects
Wiki https://github.com/paddingme/Learning-JavaScript/wiki
Security and quality https://github.com/paddingme/Learning-JavaScript/security
Insights https://github.com/paddingme/Learning-JavaScript/pulse
【JavaScript】【学习心得】学习 JavaScript 第十七天https://github.com/paddingme/Learning-JavaScript/issues/21#top
Mu-Help-Planhttps://github.com/paddingme/Learning-JavaScript/issues?q=state%3Aopen%20label%3A%22Mu-Help-Plan%22
https://github.com/paddingme
paddingmehttps://github.com/paddingme
on Dec 3, 2014https://github.com/paddingme/Learning-JavaScript/issues/21#issue-50839215
Mu-Help-Planhttps://github.com/paddingme/Learning-JavaScript/issues?q=state%3Aopen%20label%3A%22Mu-Help-Plan%22
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.