René's URL Explorer Experiment


Title: English Translation Progress · Issue #938 · javascript-tutorial/en.javascript.info · GitHub

Open Graph Title: English Translation Progress · Issue #938 · javascript-tutorial/en.javascript.info

X Title: English Translation Progress · Issue #938 · javascript-tutorial/en.javascript.info

Description: Maintainer List @iliakan For New Translators To translate a page: Check that no one else has claimed your page in the checklist and comments below. Comment below with the name of the page you would like to translate. Please take only one...

Open Graph Description: Maintainer List @iliakan For New Translators To translate a page: Check that no one else has claimed your page in the checklist and comments below. Comment below with the name of the page you would...

X Description: Maintainer List @iliakan For New Translators To translate a page: Check that no one else has claimed your page in the checklist and comments below. Comment below with the name of the page you would...

Opengraph URL: https://github.com/javascript-tutorial/en.javascript.info/issues/938

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"English Translation Progress","articleBody":"\n## Maintainer List\n\n@iliakan\n\n## For New Translators\n\nTo translate a page:\n\n1. Check that no one else has claimed your page in the checklist and comments below.\n2. Comment below with the name of the page you would like to translate. **Please take only one page at a time**.\n3. Clone this repo, translate your page, and submit a pull request!\n\nBefore contributing, read the glossary and style guide (once they exist) to understand how to translate various technical and React-specific terms.\n\nPlease be prompt with your translations! If you find find that you can't commit any more, let the maintainers know so they can assign the page to someone else.\n\n## For Maintainers\n\nWhen someone volunteers, edit this issue with the username of the volunteer, and with the PR. Ex:\n\n* [ ] Home Page (@iliakan) #1\n\nWhen PRs are merged, make sure to mark that page as completed!\n\n## The JavaScript language\n\n\n### An introduction\n\n* [ ] An Introduction to JavaScript\n* [ ] Code editors\n* [ ] Developer console\n\n### JavaScript Fundamentals\n\n* [ ] Hello, world!\n* [ ] Code structure\n* [ ] The modern mode, \"use strict\"\n* [ ] Variables\n* [ ] Data types\n* [ ] Type Conversions\n* [ ] Operators\n* [ ] Comparisons\n* [ ] Interaction: alert, prompt, confirm\n* [ ] Conditional operators: if, '?'\n* [ ] Logical operators\n* [ ] Loops: while and for\n* [ ] The \"switch\" statement\n* [ ] Functions\n* [ ] Function expressions and arrows\n* [ ] JavaScript specials\n\n### Code quality\n\n* [ ] Debugging in Chrome\n* [ ] Coding Style\n* [ ] Comments\n* [ ] Ninja code\n* [ ] Automated testing with mocha\n* [ ] Polyfills\n\n### Objects: the basics\n\n* [ ] Objects\n* [ ] Garbage collection\n* [ ] Symbol type\n* [ ] Object methods, \"this\"\n* [ ] Object to primitive conversion\n* [ ] Constructor, operator \"new\"\n\n### Data types\n\n* [ ] Methods of primitives\n* [ ] Numbers\n* [ ] Strings\n* [ ] Arrays\n* [ ] Array methods\n* [ ] Iterables\n* [ ] Map, Set, WeakMap and WeakSet\n* [ ] Object.keys, values, entries\n* [ ] Destructuring assignment\n* [ ] Date and time\n* [ ] JSON methods, toJSON\n\n### Advanced working with functions\n\n* [ ] Recursion and stack\n* [ ] Rest parameters and spread operator\n* [ ] Closure\n* [ ] The old \"var\"\n* [ ] Global object\n* [ ] Function object, NFE\n* [ ] The \"new Function\" syntax\n* [ ] Scheduling: setTimeout and setInterval\n* [ ] Decorators and forwarding, call/apply\n* [ ] Function binding\n* [ ] Currying and partials\n* [ ] Arrow functions revisited\n\n### Object properties configuration\n\n* [ ] Property flags and descriptors\n* [ ] Property getters and setters\n\n### Prototypes, inheritance\n\n* [ ] Prototypal inheritance\n* [ ] F.prototype\n* [ ] Native prototypes\n* [ ] Prototype methods, objects without __proto__\n* [ ] Getting all properties\n\n### Classes\n\n* [ ] Class basic syntax\n* [ ] Class inheritance\n* [ ] Static properties and methods\n* [ ] Private and protected properties and methods\n* [ ] Extending built-in classes\n* [ ] Class checking: \"instanceof\"\n* [ ] Mixins\n\n### Error handling\n\n* [ ] Error handling, \"try..catch\"\n* [ ] Custom errors, extending Error\n\n### Promises, async/await\n\n* [ ] Introduction: callbacks\n* [ ] Promise\n* [ ] Promises chaining\n* [ ] Error handling with promises\n* [ ] Promise API\n* [ ] Promisification\n* [ ] Microtasks and event loop\n* [ ] Async/await\n\n### Generators, advanced iteration\n\n* [ ] Generators\n* [ ] Async iterators and generators\n\n### Modules\n\n* [ ] Modules, introduction\n* [ ] Export and Import\n* [ ] Dynamic imports\n\n## Browser: Document, Events, Interfaces\n\n\n### Document\n\n* [ ] Browser environment, specs\n* [ ] DOM tree\n* [ ] Walking the DOM\n* [ ] Searching: getElement*, querySelector*\n* [ ] Node properties: type, tag and contents\n* [ ] Attributes and properties\n* [ ] Modifying the document\n* [ ] Styles and classes\n* [ ] Element size and scrolling\n* [ ] Window sizes and scrolling\n* [ ] Coordinates\n\n### Introduction to Events\n\n* [ ] Introduction to browser events\n* [ ] Bubbling and capturing\n* [ ] Event delegation\n* [ ] Browser default actions\n* [ ] Dispatching custom events\n\n### UI Events\n\n* [ ] Mouse events basics\n* [ ] Moving: mouseover/out, mouseenter/leave\n* [ ] Drag'n'Drop with mouse events\n* [ ] Keyboard: keydown and keyup\n* [ ] Scrolling\n\n### Forms, controls\n\n* [ ] Form properties and methods\n* [ ] Focusing: focus/blur\n* [ ] Events: change, input, cut, copy, paste\n* [ ] Form submission: event and method submit\n\n### Document and resource loading\n\n* [ ] Page: DOMContentLoaded, load, beforeunload, unload\n* [ ] Scripts: async, defer\n* [ ] Resource loading: onload and onerror\n\n## Frames and windows\n\n* [ ] Popups and window methods\n* [ ] Cross-window communication\n* [ ] The clickjacking attack\n\n## Binary data, files\n\n* [ ] ArrayBuffer, binary arrays\n* [ ] TextDecoder and TextEncoder\n* [ ] Blob\n* [ ] File and FileReader\n\n## Network requests\n\n* [ ] Fetch: Basics\n* [ ] Fetch: Download progress\n* [ ] Fetch: Abort\n* [ ] Fetch: Cross-Origin Requests\n* [ ] Fetch API\n* [ ] URL objects\n* [ ] XMLHttpRequest\n* [ ] WebSocket\n\n## Storing data in the browser\n\n* [ ] Cookies, document.cookie\n* [ ] LocalStorage, sessionStorage\n* [ ] IndexedDB\n\n## Animation\n\n* [ ] Bezier curve\n* [ ] CSS-animations\n* [ ] JavaScript animations\n\n## Web components\n\n* [ ] From the orbital height\n* [ ] Custom elements\n* [ ] Shadow DOM\n* [ ] Template element\n* [ ] Shadow DOM slots, composition\n* [ ] Shadow DOM styling\n* [ ] Shadow DOM and events\n\n## Regular expressions\n\n* [ ] Patterns and flags\n* [ ] Methods of RegExp and String\n* [ ] Character classes\n* [ ] Escaping, special characters\n* [ ] Sets and ranges [...]\n* [ ] Quantifiers +, *, ? and {n}\n* [ ] Greedy and lazy quantifiers\n* [ ] Capturing groups\n* [ ] Backreferences in pattern: \\n and \\k\n* [ ] Alternation (OR) |\n* [ ] String start ^ and finish $\n* [ ] Multiline mode, flag \"m\"\n* [ ] Lookahead and lookbehind\n* [ ] Infinite backtracking problem\n* [ ] Unicode: flag \"u\"\n* [ ] Unicode character properies \\p\n* [ ] Sticky flag \"y\", searching at position\n\n## Miscellaneous\n\n* [ ] Mutation observer\n","author":{"url":"https://github.com/iliakan","@type":"Person","name":"iliakan"},"datePublished":"2019-04-24T12:34:54.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/938/en.javascript.info/issues/938"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:5d5e5b35-b44f-d74a-a59f-758423ca6719
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB5D8:2CFE84:BF5E4:107D66:69774542
html-safe-noncee3832c500b673ffe91d37d769d828b9dc725031111380d2dbea2a465c1ee36e4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNUQ4OjJDRkU4NDpCRjVFNDoxMDdENjY6Njk3NzQ1NDIiLCJ2aXNpdG9yX2lkIjoiNDU0MTUyNzk1NzA0OTkxODc4NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacb90573e6627680bd7c4d0c15cc5de8bde1a88ef1c22c62e44d1d5b5003a6938b
hovercard-subject-tagissue:436670891
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/javascript-tutorial/en.javascript.info/938/issue_layout
twitter:imagehttps://opengraph.githubassets.com/d05eadb1736eb51002dc2a25feb706bea7d2fe005b7fba89750f6eb52795f6a9/javascript-tutorial/en.javascript.info/issues/938
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/d05eadb1736eb51002dc2a25feb706bea7d2fe005b7fba89750f6eb52795f6a9/javascript-tutorial/en.javascript.info/issues/938
og:image:altMaintainer List @iliakan For New Translators To translate a page: Check that no one else has claimed your page in the checklist and comments below. Comment below with the name of the page you would...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameiliakan
hostnamegithub.com
expected-hostnamegithub.com
None01d198479908d09a841b2febe8eb105a81af2af7d81830960fe0971e1f4adc09
turbo-cache-controlno-preview
go-importgithub.com/javascript-tutorial/en.javascript.info git https://github.com/javascript-tutorial/en.javascript.info.git
octolytics-dimension-user_id49552305
octolytics-dimension-user_loginjavascript-tutorial
octolytics-dimension-repository_id93253246
octolytics-dimension-repository_nwojavascript-tutorial/en.javascript.info
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id93253246
octolytics-dimension-repository_network_root_nwojavascript-tutorial/en.javascript.info
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
released37e99eca9fba24ee37da98481d573461cc1ab7d
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/javascript-tutorial/en.javascript.info/issues/938#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavascript-tutorial%2Fen.javascript.info%2Fissues%2F938
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://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavascript-tutorial%2Fen.javascript.info%2Fissues%2F938
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=javascript-tutorial%2Fen.javascript.info
Reloadhttps://github.com/javascript-tutorial/en.javascript.info/issues/938
Reloadhttps://github.com/javascript-tutorial/en.javascript.info/issues/938
Reloadhttps://github.com/javascript-tutorial/en.javascript.info/issues/938
javascript-tutorial https://github.com/javascript-tutorial
en.javascript.infohttps://github.com/javascript-tutorial/en.javascript.info
Notifications https://github.com/login?return_to=%2Fjavascript-tutorial%2Fen.javascript.info
Fork 4k https://github.com/login?return_to=%2Fjavascript-tutorial%2Fen.javascript.info
Star 25.1k https://github.com/login?return_to=%2Fjavascript-tutorial%2Fen.javascript.info
Code https://github.com/javascript-tutorial/en.javascript.info
Issues 237 https://github.com/javascript-tutorial/en.javascript.info/issues
Pull requests 270 https://github.com/javascript-tutorial/en.javascript.info/pulls
Discussions https://github.com/javascript-tutorial/en.javascript.info/discussions
Actions https://github.com/javascript-tutorial/en.javascript.info/actions
Security 0 https://github.com/javascript-tutorial/en.javascript.info/security
Insights https://github.com/javascript-tutorial/en.javascript.info/pulse
Code https://github.com/javascript-tutorial/en.javascript.info
Issues https://github.com/javascript-tutorial/en.javascript.info/issues
Pull requests https://github.com/javascript-tutorial/en.javascript.info/pulls
Discussions https://github.com/javascript-tutorial/en.javascript.info/discussions
Actions https://github.com/javascript-tutorial/en.javascript.info/actions
Security https://github.com/javascript-tutorial/en.javascript.info/security
Insights https://github.com/javascript-tutorial/en.javascript.info/pulse
New issuehttps://github.com/login?return_to=https://github.com/javascript-tutorial/en.javascript.info/issues/938
New issuehttps://github.com/login?return_to=https://github.com/javascript-tutorial/en.javascript.info/issues/938
English Translation Progresshttps://github.com/javascript-tutorial/en.javascript.info/issues/938#top
https://github.com/iliakan
https://github.com/iliakan
iliakanhttps://github.com/iliakan
on Apr 24, 2019https://github.com/javascript-tutorial/en.javascript.info/issues/938#issue-436670891
@iliakanhttps://github.com/iliakan
@iliakanhttps://github.com/iliakan
Fix typo #1https://github.com/javascript-tutorial/en.javascript.info/pull/1
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.