René's URL Explorer Experiment


Title: js没那么简单(1)-- 执行上下文 · Issue #14 · wython/wython.github.io · GitHub

Open Graph Title: js没那么简单(1)-- 执行上下文 · Issue #14 · wython/wython.github.io

X Title: js没那么简单(1)-- 执行上下文 · Issue #14 · wython/wython.github.io

Description: 前言 我为什么写这个文章?也许换个耳熟能详的话题会有更多人看吧。之前发了个tls感觉阅读量不行。 要讲ecma语法吗?我觉得还是不了吧,毕竟这些繁琐,枯燥,而且门槛低。 那讲什么好?讲一点我自己觉得大家都知道,但是可能理解不到位都东西。 我自己理解到位吗?我想不一定很到位,但是一定很有思考价值。 这是一个系列?它可能是一个系列,就从执行上下文和运行开始吧。 js难不难?看你自己都目标吧,我觉得没有简单的东西,当你思考越多,就会看到更多东西,相对以前的理解就是难的。 那就...

Open Graph Description: 前言 我为什么写这个文章?也许换个耳熟能详的话题会有更多人看吧。之前发了个tls感觉阅读量不行。 要讲ecma语法吗?我觉得还是不了吧,毕竟这些繁琐,枯燥,而且门槛低。 那讲什么好?讲一点我自己觉得大家都知道,但是可能理解不到位都东西。 我自己理解到位吗?我想不一定很到位,但是一定很有思考价值。 这是一个系列?它可能是一个系列,就从执行上下文和运行开始吧。 js难不难?看你自己都目标吧,我觉...

X Description: 前言 我为什么写这个文章?也许换个耳熟能详的话题会有更多人看吧。之前发了个tls感觉阅读量不行。 要讲ecma语法吗?我觉得还是不了吧,毕竟这些繁琐,枯燥,而且门槛低。 那讲什么好?讲一点我自己觉得大家都知道,但是可能理解不到位都东西。 我自己理解到位吗?我想不一定很到位,但是一定很有思考价值。 这是一个系列?它可能是一个系列,就从执行上下文和运行开始吧。 js难不难?看你自己都目标吧,我觉...

Opengraph URL: https://github.com/wython/wython.github.io/issues/14

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"js没那么简单(1)-- 执行上下文","articleBody":"## 前言\r\n我为什么写这个文章?也许换个耳熟能详的话题会有更多人看吧。之前发了个tls感觉阅读量不行。\r\n\r\n要讲ecma语法吗?我觉得还是不了吧,毕竟这些繁琐,枯燥,而且门槛低。\r\n\r\n那讲什么好?讲一点我自己觉得大家都知道,但是可能理解不到位都东西。\r\n\r\n我自己理解到位吗?我想不一定很到位,但是一定很有思考价值。\r\n\r\n这是一个系列?它可能是一个系列,就从执行上下文和运行开始吧。\r\n\r\njs难不难?看你自己都目标吧,我觉得没有简单的东西,当你思考越多,就会看到更多东西,相对以前的理解就是难的。\r\n\r\n那就开始吧\r\n\r\n### 正文\r\n#### js或者ecmascript?\r\n大家用了那么久js,有没有搞清楚规范和实现的区别呢?ECMA这个组织定义了这个语言的规范,Javascript是这个规范的一个实现。这意味着,他可以有很多实现的可能,只是Javascript是其中一个最热门的实现。我们通常说的ecma规范,那指的是一种口头协议规范,通常我们说javascript语言,那指的是已经实现了ecma某个规范的一种语言。\r\n\r\n在这个基础上,**执行上下文**就是ecma规范里面提到的一个抽象概念。这意味着,这东西不是一个具体已经实现出来的东西,他仅仅只是一个抽象模型,具体在计算机内部是怎么编译运行,以什么样的面向对象代码呈现,那应该是引擎(v8)实现的细节的内容。\r\n\r\n那么**执行上下文**的意义在于,它可以给一个抽象模型,让我们更简单的预测js的运行机制。同时,执行上下文对后续理解js内存,垃圾回收,闭包等具有深刻意义,他可以帮助我们在不需要很了解基础底层情况下去分析内存,执行过程。\r\n\r\n#### js代码是如何工作的?\r\n![](https://user-gold-cdn.xitu.io/2020/7/23/1737b9b8972fda26?w=974\u0026h=170\u0026f=png\u0026s=23791)\r\n为了不复杂化思路,我们可以暂时把js运行过程分成上图三个大步骤。\r\n1. 获取js代码\r\n2. 编译\r\n3. 运行\r\n\r\n编译阶段:js代码在编译阶段(序列化--\u003e抽象语法树--\u003e可执行代码)被编译成机器可识别大可执行代码\r\n\r\n运行:运行代码\r\n\r\n#### 执行上下文(Execution Contexts)\r\n[执行上下文(Execution Contexts)](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf)是ECMA规范262第八章节中提出的抽象概念。这个概念定义了,js代码在运行时,所处的上下文环境。在简单的代码中,我们可以简单的理解上下文环境结构由:**词法环境**(Lexical Environments)和 **变量环境**(Variable Environment)两个部分。我们这里只需要关注这两部分:\r\n![](https://user-gold-cdn.xitu.io/2020/7/24/1737ec1db136db10?w=620\u0026h=208\u0026f=png\u0026s=37775)\r\n词法环境: 词法环境定义了由代码编译过程中,ecma规范词法对应的一些关系,比如记录函数内部的this内容,不对外暴露,可以理解为ecma内部自己的语法关系。\r\n\r\n变量环境:变量环境指的的是在词法环境中,代码运行时生成的变量关系,可以理解为由我们创建的变量。\r\n\r\n另外,我们写的代码,包括函数里的代码执行,在规范中叫**可执行代码**。于是,我们可以把代码的运行流程,更细致的概括为,那么执行上下文和可以执行代码会伴随在js的运行周期里:\r\n\r\n![](https://user-gold-cdn.xitu.io/2020/7/24/1737edf78d8fa366?w=1736\u0026h=272\u0026f=png\u0026s=81180)\r\n\r\n这我们在进一步的理解执行上下文,在js中,有三个比较场景会生成上下文对象:\r\n1. 全局上下文\r\n2. 函数上下文\r\n3. eval上下文\r\n\r\n所以,JS只有三种环境下会生成执行上下文,这意味着js不像c语言那样,具有单独块作用域的概念,只有函数作用域和全局作用域\r\n\r\n#### 执行上下文的生成时机\r\n上面我们把代码的过程抽象成**编译时**和***运行时***。而执行上下文会在编译时就确定上下文关系,所以可以认为,在编译过程中,在解析js代码所对应的词法关系时候,编译器就已经确定了代码中每个环境对应的执行上下文的关系,只是说,这时候还没被激活。虽然这里还没提到作用域链,但是我们通常把这种在词法阶段确定的关系叫做**静态**。由于执行上下文中也会有作用域链,所以JS通常被称为词法作用域或者静态作用域。\r\n\r\n这意味着,js在编译阶段其实已经做好了很多事情,当然也包括我们常说的变量提升。\r\n让我们看下真实代码中如何体现:\r\n\r\n\r\n#### 运行过程和调用栈\r\n既然加执行上下文,那它必然和执行时候密切相关。相信大部分人都知道,我们常说的会说的名词,函数调用栈。这个函数调用栈其实就是执行上下文的调用栈。我们上面提到,还有全局环境会生成全局上下文,eval环境会生成eval上下文。所以,这些上下文都会在激活时候进入调用栈。\r\n\r\n比如,全局上下文,在编译完,代码开始运行时候就开始入栈,因为全局环境是最先开始运行的。\r\n\r\n```javascirpt\r\nfunction a(){}\r\nfunction b(){}\r\n\r\na()\r\nb()\r\n```\r\n![](https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/81fe9f2fcd8e486f8116900ae434c325~tplv-k3u1fbpfcp-zoom-1.image)\r\n\r\n如图,对于全局环境来说,可执行代码如图。实际在运行时,内存里应该以机器码形式存在。当运行到a(),a函数到执行上下文会生成然后入栈。\r\n\r\n\r\n#### 从执行上下文中看变量提升\r\n变量提升是一个我们经常关注的内容,我们通常把变量提升解释为,在js预编译阶段会对变量做一个提升,这里可以用一个简单对demo来重现这一经典现象:\r\n```javascript\r\nconsole.log(val) // undifined\r\nadd(1, 2) // 3\r\nfunction add(v1, v2) {\r\n    return v1 + v2\r\n}\r\n\r\nvar val = 1\r\n```\r\n可以看到,在变量声明前使用它,完全没有问题。对于经常使用js的人,这代码并没有任何稀奇。\r\n\r\n但是,如果我们更深一层的去思考,变量提升的本质是什么。我们回想上面js的运行过程。从一段js代码,编译成可执行代码。我们把这个代码带到这个流程中去,我可以进一步把上面的代码抽象成这样:\r\n![](https://p1-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/8b10ed9738644bf8a10b02049319b414~tplv-k3u1fbpfcp-zoom-1.image)\r\n\r\n入图所示,以上js脚本代码,通过词法解析,编译器会确认为该段代码具有两个不同的上下文环境,每一个环境中对应的内容我也标记出来了。比如全局上下文中,对应可执行代码是:\r\n```\r\nconsole.log(val)\r\nadd(1, 2)\r\nvar val = 1\r\n```\r\n其对应的环境变量是val和add函数指针,函数指针值得是其对应的是静态代码区域的可执行代码。实际上是函数上下文中对应的可执行代码。\r\n\r\n那么在运行时候,全局上下文首先激活入栈,然后全局的脚本代码开始执行:\r\n\r\n![](https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/35132d9ff5564e63a647bffb61c71a1e~tplv-k3u1fbpfcp-zoom-1.image)\r\n\r\n当执行到console.log时候,我们看到,虽然我们脚本代码中val在console.log后面,但是依然打出来了undifined,而不是报错。这是得力于词法环境到功劳。因为js在编译时候就帮我们生成对应到变量,只不过,其还没有对应到值而已。\r\n\r\n![](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/3ea05ceed7554be8ba0f0ed61274b801~tplv-k3u1fbpfcp-zoom-1.image)\r\n\r\n然后当游标执行到add(1, 2)时,由于函数变量也已经生成,并且由于时函数声明形式。所以编译器时知道函数对应到可执行代码所处到指针,于是调用了函数,然后激活函数到上下文,并且入栈。其调用栈正如上文所示。即使函数在代码中是在执行代码到后面,但是得力于词法解析到功劳,add函数变量在编译时已经生成。\r\n\r\n![](https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/068fd06150a84033ac2c9c0ae01631c9~tplv-k3u1fbpfcp-zoom-1.image)\r\n最后当执行到val = 1时候,函数先出栈,然后变量环境到val也会对应得到赋值。\r\n\r\n这里需要说下,就是为了能够大家看懂,我用js的方式展示执行代码。但是实际上编译完成的执行代码应该是机器码。可以看到图中,变量环境中,两个变量val,和add分别是undefined和一个指向函数的一个引用。\r\n\r\n到这里,我相信应该就很容易理解,为什么会存在变量提升这样的现象。本质上是因为js在编译过程中的词法解析阶段,就已经生成了执行上下文的关系,所以代码还没运行时候,变量的环境已经创建好了,而在代码运行时候。即使我们的执行代码是比变量更前的,依然可以拿到变量的引用,在代码运行时,上下文对象才会激活。\r\n\r\n所以这一章节重点就是:**上下文对象生成时机在词法解析阶段,而上下文对象激活时机在运行阶段**\r\n\r\n#### eval环境\r\nEval代码在运行时,上下文中会多一个调用所处环境多上下文引用。\r\n\r\n#### 变量提升的问题\r\n变量提升可以认为是最初js设计上的一些不足,因为由上面的描述得知,这种从简的设计导致了变量提升。这种提升会在一些可能的块作用域中产生一些影响。比如while,for循环。对于那些曾经接触过c或者java这类语言的人来说,js这样简单的只有函数作用域块的特点会很难以理解。在for循环和while里面变量的提升,都会导致变量在全局情况下被覆盖,无法缓存的问题。\r\n\r\n当然后面es6也有let和const的概念去解决块作用域的问题。但是本质上来说,变量提升不是一个很好的特性。\r\n\r\n最后,可以通过上下文对象试着去想,闭包多本质是怎么样的,后续有时间在讨论。\r\n\r\n\r\n\r\n\r\n\r\n\r\n","author":{"url":"https://github.com/wython","@type":"Person","name":"wython"},"datePublished":"2020-08-06T08:08:13.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/14/wython.github.io/issues/14"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f488b0d7-020a-1565-fcf3-023ff15b7222
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA976:3BFB17:629FA85:8005AB9:6975624E
html-safe-nonce6d163de1ec875a919443870ec65548b4fcc4380dde147f015e0764cde72af949
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBOTc2OjNCRkIxNzo2MjlGQTg1OjgwMDVBQjk6Njk3NTYyNEUiLCJ2aXNpdG9yX2lkIjoiMTUwMTc0OTYxMDQ2Njg2MTY0NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaccbe3cc7cbe5113622c37b3efaa770180f0a3712f8c58212d8f1bd49618b4b18b
hovercard-subject-tagissue:674113053
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/wython/wython.github.io/14/issue_layout
twitter:imagehttps://opengraph.githubassets.com/c01134a8d784cfefa9184c1049783f8df616be025ca682717c15054735c1b179/wython/wython.github.io/issues/14
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/c01134a8d784cfefa9184c1049783f8df616be025ca682717c15054735c1b179/wython/wython.github.io/issues/14
og:image:alt前言 我为什么写这个文章?也许换个耳熟能详的话题会有更多人看吧。之前发了个tls感觉阅读量不行。 要讲ecma语法吗?我觉得还是不了吧,毕竟这些繁琐,枯燥,而且门槛低。 那讲什么好?讲一点我自己觉得大家都知道,但是可能理解不到位都东西。 我自己理解到位吗?我想不一定很到位,但是一定很有思考价值。 这是一个系列?它可能是一个系列,就从执行上下文和运行开始吧。 js难不难?看你自己都目标吧,我觉...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamewython
hostnamegithub.com
expected-hostnamegithub.com
None4a4bf5f4e28041a9d2e5c107d7d20b78b4294ba261cab243b28167c16a623a1f
turbo-cache-controlno-preview
go-importgithub.com/wython/wython.github.io git https://github.com/wython/wython.github.io.git
octolytics-dimension-user_id15258919
octolytics-dimension-user_loginwython
octolytics-dimension-repository_id142893945
octolytics-dimension-repository_nwowython/wython.github.io
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id142893945
octolytics-dimension-repository_network_root_nwowython/wython.github.io
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
release488b30e96dfd057fbbe44c6665ccbc030b729dde
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/wython/wython.github.io/issues/14#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fwython%2Fwython.github.io%2Fissues%2F14
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
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
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
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/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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fwython%2Fwython.github.io%2Fissues%2F14
Sign up https://patch-diff.githubusercontent.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=wython%2Fwython.github.io
Reloadhttps://patch-diff.githubusercontent.com/wython/wython.github.io/issues/14
Reloadhttps://patch-diff.githubusercontent.com/wython/wython.github.io/issues/14
Reloadhttps://patch-diff.githubusercontent.com/wython/wython.github.io/issues/14
wython https://patch-diff.githubusercontent.com/wython
wython.github.iohttps://patch-diff.githubusercontent.com/wython/wython.github.io
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fwython%2Fwython.github.io
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fwython%2Fwython.github.io
Star 10 https://patch-diff.githubusercontent.com/login?return_to=%2Fwython%2Fwython.github.io
Code https://patch-diff.githubusercontent.com/wython/wython.github.io
Issues 14 https://patch-diff.githubusercontent.com/wython/wython.github.io/issues
Pull requests 0 https://patch-diff.githubusercontent.com/wython/wython.github.io/pulls
Actions https://patch-diff.githubusercontent.com/wython/wython.github.io/actions
Projects 0 https://patch-diff.githubusercontent.com/wython/wython.github.io/projects
Security 0 https://patch-diff.githubusercontent.com/wython/wython.github.io/security
Insights https://patch-diff.githubusercontent.com/wython/wython.github.io/pulse
Code https://patch-diff.githubusercontent.com/wython/wython.github.io
Issues https://patch-diff.githubusercontent.com/wython/wython.github.io/issues
Pull requests https://patch-diff.githubusercontent.com/wython/wython.github.io/pulls
Actions https://patch-diff.githubusercontent.com/wython/wython.github.io/actions
Projects https://patch-diff.githubusercontent.com/wython/wython.github.io/projects
Security https://patch-diff.githubusercontent.com/wython/wython.github.io/security
Insights https://patch-diff.githubusercontent.com/wython/wython.github.io/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/wython/wython.github.io/issues/14
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/wython/wython.github.io/issues/14
js没那么简单(1)-- 执行上下文https://patch-diff.githubusercontent.com/wython/wython.github.io/issues/14#top
javascripthttps://github.com/wython/wython.github.io/issues?q=state%3Aopen%20label%3A%22javascript%22
https://github.com/wython
https://github.com/wython
wythonhttps://github.com/wython
on Aug 6, 2020https://github.com/wython/wython.github.io/issues/14#issue-674113053
https://camo.githubusercontent.com/d3420950fcafd65f2593f05265e7300e35042e0fa97a78f648606f143db2ac25/68747470733a2f2f757365722d676f6c642d63646e2e786974752e696f2f323032302f372f32332f313733376239623839373266646132363f773d39373426683d31373026663d706e6726733d3233373931
执行上下文(Execution Contexts)http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf
https://camo.githubusercontent.com/7654d73bd1e35ce4e496cf41861a784e9b374105398497e93ce2640cd24ddbbd/68747470733a2f2f757365722d676f6c642d63646e2e786974752e696f2f323032302f372f32342f313733376563316462313336646231303f773d36323026683d32303826663d706e6726733d3337373735
https://camo.githubusercontent.com/064b81c7d37846a218fde4ae38330156ac70ca506e4bae1fdd177cb6ac584a88/68747470733a2f2f757365722d676f6c642d63646e2e786974752e696f2f323032302f372f32342f313733376564663738643866613336363f773d3137333626683d32373226663d706e6726733d3831313830
https://camo.githubusercontent.com/a0b28739a9e11b40800a7b06984201ffc5e84688242f4afc7cf68f5c626fa633/68747470733a2f2f70392d6a75656a696e2e62797465696d672e636f6d2f746f732d636e2d692d6b3375316662706663702f38316665396632666364386534383666383131363930306165343334633332357e74706c762d6b3375316662706663702d7a6f6f6d2d312e696d616765
https://camo.githubusercontent.com/429171e745d043421de57774c10e007316e842ee5097939d100c7be23a94498c/68747470733a2f2f70312d6a75656a696e2e62797465696d672e636f6d2f746f732d636e2d692d6b3375316662706663702f38623130656439373338363434626638613130623032303439333139623431347e74706c762d6b3375316662706663702d7a6f6f6d2d312e696d616765
https://camo.githubusercontent.com/221843d0772d490fbb4d92ecd0e4d877bd919ea0f854bd41bd6984411799cc9e/68747470733a2f2f70392d6a75656a696e2e62797465696d672e636f6d2f746f732d636e2d692d6b3375316662706663702f33353133326439666635353634653633613634376266666236316337316131657e74706c762d6b3375316662706663702d7a6f6f6d2d312e696d616765
https://camo.githubusercontent.com/989164bc74397833505f469571beee32b424550e93189d7bbfb6136eeb2e7709/68747470733a2f2f70332d6a75656a696e2e62797465696d672e636f6d2f746f732d636e2d692d6b3375316662706663702f33656130356365656437353534626538626130663065643631323734623830317e74706c762d6b3375316662706663702d7a6f6f6d2d312e696d616765
https://camo.githubusercontent.com/ebd6de2f123f423e279135737cb69d589ea730fc0659452ba2aff0ea2560d8f7/68747470733a2f2f70392d6a75656a696e2e62797465696d672e636f6d2f746f732d636e2d692d6b3375316662706663702f30363866643036313530613834303333616332633963306165303136333163397e74706c762d6b3375316662706663702d7a6f6f6d2d312e696d616765
javascripthttps://github.com/wython/wython.github.io/issues?q=state%3Aopen%20label%3A%22javascript%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.