René's URL Explorer Experiment


Title: Test Translation Progress · Issue #1 · javascript-tutorial/test.javascript.info · GitHub

Open Graph Title: Test Translation Progress · Issue #1 · javascript-tutorial/test.javascript.info

X Title: Test Translation Progress · Issue #1 · javascript-tutorial/test.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/test.javascript.info/issues/1

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Test 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-28T18:40:16.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/1/test.javascript.info/issues/1"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:c2b78e97-f4ac-6e3c-7a9a-aea6f0aed5dc
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id95BE:26AEF0:587975:79D405:696E7764
html-safe-noncee6e5c26f393c75c836d680cb044c0df0b190158130664b24fd55275c9978d7fe
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NUJFOjI2QUVGMDo1ODc5NzU6NzlENDA1OjY5NkU3NzY0IiwidmlzaXRvcl9pZCI6IjI2Mjk1NTI5NDI0NzUxNjAwNCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac09ff10ad13139f92b227a147eef666aecc336d6ff6c23213dc4e7253503fa3e1
hovercard-subject-tagissue:438086770
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/test.javascript.info/1/issue_layout
twitter:imagehttps://opengraph.githubassets.com/112ab580c017d1c73872a919448764b3d73f502f5a9fdd4487e33cca7efb12aa/javascript-tutorial/test.javascript.info/issues/1
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/112ab580c017d1c73872a919448764b3d73f502f5a9fdd4487e33cca7efb12aa/javascript-tutorial/test.javascript.info/issues/1
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
None01185010a96388a2a8cd8bd7f5824fdf090522b219f9aecf8c7ff1857aeb489b
turbo-cache-controlno-preview
go-importgithub.com/javascript-tutorial/test.javascript.info git https://github.com/javascript-tutorial/test.javascript.info.git
octolytics-dimension-user_id49552305
octolytics-dimension-user_loginjavascript-tutorial
octolytics-dimension-repository_id183945377
octolytics-dimension-repository_nwojavascript-tutorial/test.javascript.info
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id183945377
octolytics-dimension-repository_network_root_nwojavascript-tutorial/test.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
release673a80c1bce2a1e6a48b530ce2b72bf8fd253386
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/javascript-tutorial/test.javascript.info/issues/1#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavascript-tutorial%2Ftest.javascript.info%2Fissues%2F1
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%2Ftest.javascript.info%2Fissues%2F1
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%2Ftest.javascript.info
Reloadhttps://github.com/javascript-tutorial/test.javascript.info/issues/1
Reloadhttps://github.com/javascript-tutorial/test.javascript.info/issues/1
Reloadhttps://github.com/javascript-tutorial/test.javascript.info/issues/1
javascript-tutorial https://github.com/javascript-tutorial
test.javascript.infohttps://github.com/javascript-tutorial/test.javascript.info
Notifications https://github.com/login?return_to=%2Fjavascript-tutorial%2Ftest.javascript.info
Fork 6 https://github.com/login?return_to=%2Fjavascript-tutorial%2Ftest.javascript.info
Star 9 https://github.com/login?return_to=%2Fjavascript-tutorial%2Ftest.javascript.info
Code https://github.com/javascript-tutorial/test.javascript.info
Issues 1 https://github.com/javascript-tutorial/test.javascript.info/issues
Pull requests 2 https://github.com/javascript-tutorial/test.javascript.info/pulls
Actions https://github.com/javascript-tutorial/test.javascript.info/actions
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/javascript-tutorial/test.javascript.info/security
Please reload this pagehttps://github.com/javascript-tutorial/test.javascript.info/issues/1
Insights https://github.com/javascript-tutorial/test.javascript.info/pulse
Code https://github.com/javascript-tutorial/test.javascript.info
Issues https://github.com/javascript-tutorial/test.javascript.info/issues
Pull requests https://github.com/javascript-tutorial/test.javascript.info/pulls
Actions https://github.com/javascript-tutorial/test.javascript.info/actions
Security https://github.com/javascript-tutorial/test.javascript.info/security
Insights https://github.com/javascript-tutorial/test.javascript.info/pulse
New issuehttps://github.com/login?return_to=https://github.com/javascript-tutorial/test.javascript.info/issues/1
New issuehttps://github.com/login?return_to=https://github.com/javascript-tutorial/test.javascript.info/issues/1
Test Translation Progresshttps://github.com/javascript-tutorial/test.javascript.info/issues/1#top
https://github.com/iliakan
https://github.com/iliakan
iliakanhttps://github.com/iliakan
on Apr 28, 2019https://github.com/javascript-tutorial/test.javascript.info/issues/1#issue-438086770
@iliakanhttps://github.com/iliakan
@iliakanhttps://github.com/iliakan
Test Translation Progress #1https://github.com/javascript-tutorial/test.javascript.info/issues/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.