René's URL Explorer Experiment


Title: [오번역수정] Part 2 - 2.1 브라우저 이벤트 소개 · Issue #1792 · javascript-tutorial/ko.javascript.info · GitHub

Open Graph Title: [오번역수정] Part 2 - 2.1 브라우저 이벤트 소개 · Issue #1792 · javascript-tutorial/ko.javascript.info

X Title: [오번역수정] Part 2 - 2.1 브라우저 이벤트 소개 · Issue #1792 · javascript-tutorial/ko.javascript.info

Description: 오번역 event.currenTarget(오번역) 이벤트를 처리하는 요소. 화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 this가 가리키는 값과 같음, 화살표 함수를 사용했거나 함수를 다른 곳에 바인딩한 경우엔 event.currentTarget를 사용해 이벤트가 처리되는 요소 정보를 얻을 수 있음 원문 Element that handled the event. That’s exactly the...

Open Graph Description: 오번역 event.currenTarget(오번역) 이벤트를 처리하는 요소. 화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 this가 가리키는 값과 같음, 화살표 함수를 사용했거나 함수를 다른 곳에 바인딩한 경우엔 event.currentTarget를 사용해 이벤트가 처리되는 요소 정보를 얻을 수 있음 원문 Element th...

X Description: 오번역 event.currenTarget(오번역) 이벤트를 처리하는 요소. 화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 this가 가리키는 값과 같음, 화살표 함수를 사용했거나 함수를 다른 곳에 바인딩한 경우엔 event.currentTarget를 사용해 이벤트가 처리되는 요소 정보를 얻을 수 있음 원문 Element th...

Opengraph URL: https://github.com/javascript-tutorial/ko.javascript.info/issues/1792

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[오번역수정] Part 2 - 2.1 브라우저 이벤트 소개","articleBody":"\u003c!-- \n    README.md에서 '번역 규칙'을 확인할 수 있습니다.\n\n    번역 모범 사례를 Wiki에서 확인할 수 있습니다.\n    ( https://github.com/javascript-tutorial/ko.javascript.info/wiki/%EB%B2%88%EC%97%AD-%EB%AA%A8%EB%B2%94-%EC%82%AC%EB%A1%80 )\n--\u003e\n\n## 오번역\n\u003c!-- 번역이 잘못되거나 애매한 부분 --\u003e\n\n\u003cimg width=\"1010\" height=\"160\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/f993c2e9-fada-409f-a090-9a6a2b625924\" /\u003e\n\n### event.currenTarget(오번역)\n\n이벤트를 처리하는 요소. 화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 `this`가 가리키는 값과 같음, 화살표 함수를 사용했거나 함수를 다른 곳에 바인딩한 경우엔 `event.currentTarget`를 사용해 이벤트가 처리되는 요소 정보를 얻을 수 있음\n\n### 원문\n\nElement that handled the event. That’s exactly the same as `this`, unless the handler is an arrow function, or its `this` is bound to something else, then we can get the element from `event.currentTarget`.\n\n## 번역\n\u003c!-- 수정한 내용 --\u003e\n\n### 수정 후\n\n이벤트를 처리하는 요소. 보통 this가 가리키는 값과 동일하지만, 핸들러가 화살표 함수로 작성되었거나 this가 다른 곳에 바인딩된 경우에는 this가 달라지므로, 이때는 event.currentTarget을 사용해 이벤트가 처리된 요소를 얻을 수 있음.\n\n## 이슈\n\u003c!-- 그렇게 수정한 이유 혹은 관련된 이슈에 대해 적어주세요 --\u003e\n\n\u003e (원문) same as `this`, unless the handler is an arrow function, or its `this` is bound to something else\n\u003e (오역) 화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 `this`가 가리키는 값과 같음\n\n원문은 unless라는 접속사를 사용해 “event.currentTarget과 this의 값이 일치하지만, 화살표 함수거나 다른 곳에 바인딩 된 경우에는 다르다\"라는 예외 상황을 설명합니다. \n\n그러나 번역은 이 unless 구문을 다르게 해석해 “화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 this가 가리키는 값과 같음”라고 서술해, 일부는 맞지만 나머지 조건이 반대로 전달되어 오해의 소지를 만들고 있습니다.\n\n원문과 비교했을 때, 화살표 함수로 작성된 핸들러 내부에서 this와 event.currentTarget이 동일하다는 서술은 오역이고, this가 다른 곳에 바인딩되지 않았을 때 두 값이 일치한다는 설명은 올바릅니다.\n\n위 내용을 근거로 부분적 오류를 수정했습니다.\n\n### 추가\n화살표 함수는 상위 컨텍스트의 this를 캡처하므로, 별도로 상위 this를 세팅하지 않았다면 이벤트 핸들러 내부에서 this가 DOM 요소를 가리키지 않습니다. 따라서 this는 event.currentTarget과 일치하지 않습니다.\n\n## Pull Request(PR)를 통해 수정할 의향이 있습니까?\n네, 있습니다.\n","author":{"url":"https://github.com/luckfeat","@type":"Person","name":"luckfeat"},"datePublished":"2025-09-11T13:06:10.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/1792/ko.javascript.info/issues/1792"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:90588b96-6100-832f-cfff-33d9ecfc8696
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE550:33A48C:2C0AFF3:3AB0A0C:6971D14A
html-safe-nonce2a92d77a372d9988bce962a3c81673c82febfa5e75642ac11200c70ea4b2c91a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNTUwOjMzQTQ4QzoyQzBBRkYzOjNBQjBBMEM6Njk3MUQxNEEiLCJ2aXNpdG9yX2lkIjoiNjczMjkxNDA3Nzg0OTQ3MzM1NCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacf72b03b113eb44decb31f82fe946934ee054a715c8950c4f66d505f5409d4e4d
hovercard-subject-tagissue:3406483984
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/ko.javascript.info/1792/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9fd7a64c1bad624dd5150d0188561fa77fa994cba31cb7648a8ebf9843e900e8/javascript-tutorial/ko.javascript.info/issues/1792
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9fd7a64c1bad624dd5150d0188561fa77fa994cba31cb7648a8ebf9843e900e8/javascript-tutorial/ko.javascript.info/issues/1792
og:image:alt오번역 event.currenTarget(오번역) 이벤트를 처리하는 요소. 화살표 함수를 사용해 핸들러를 만들거나 다른 곳에 바인딩하지 않은 경우엔 this가 가리키는 값과 같음, 화살표 함수를 사용했거나 함수를 다른 곳에 바인딩한 경우엔 event.currentTarget를 사용해 이벤트가 처리되는 요소 정보를 얻을 수 있음 원문 Element th...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameluckfeat
hostnamegithub.com
expected-hostnamegithub.com
None7476eb4140129667a7530d10cfb7688f701883e35a4dcaa4673e3ec599af5199
turbo-cache-controlno-preview
go-importgithub.com/javascript-tutorial/ko.javascript.info git https://github.com/javascript-tutorial/ko.javascript.info.git
octolytics-dimension-user_id49552305
octolytics-dimension-user_loginjavascript-tutorial
octolytics-dimension-repository_id159097215
octolytics-dimension-repository_nwojavascript-tutorial/ko.javascript.info
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id159097215
octolytics-dimension-repository_network_root_nwojavascript-tutorial/ko.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
release2cc0827c872b538cd08371730242ae4951d2d61a
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues/1792#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjavascript-tutorial%2Fko.javascript.info%2Fissues%2F1792
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%2Fjavascript-tutorial%2Fko.javascript.info%2Fissues%2F1792
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=javascript-tutorial%2Fko.javascript.info
Reloadhttps://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues/1792
Reloadhttps://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues/1792
Reloadhttps://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues/1792
javascript-tutorial https://patch-diff.githubusercontent.com/javascript-tutorial
ko.javascript.infohttps://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fjavascript-tutorial%2Fko.javascript.info
Fork 842 https://patch-diff.githubusercontent.com/login?return_to=%2Fjavascript-tutorial%2Fko.javascript.info
Star 2k https://patch-diff.githubusercontent.com/login?return_to=%2Fjavascript-tutorial%2Fko.javascript.info
Code https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info
Issues 190 https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues
Pull requests 64 https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/pulls
Actions https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/actions
Wiki https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/security
Please reload this pagehttps://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues/1792
Insights https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/pulse
Code https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info
Issues https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues
Pull requests https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/pulls
Actions https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/actions
Wiki https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/wiki
Security https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/security
Insights https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/javascript-tutorial/ko.javascript.info/issues/1792
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/javascript-tutorial/ko.javascript.info/issues/1792
[오번역수정] Part 2 - 2.1 브라우저 이벤트 소개https://patch-diff.githubusercontent.com/javascript-tutorial/ko.javascript.info/issues/1792#top
https://github.com/luckfeat
https://github.com/luckfeat
luckfeathttps://github.com/luckfeat
on Sep 11, 2025https://github.com/javascript-tutorial/ko.javascript.info/issues/1792#issue-3406483984
https://private-user-images.githubusercontent.com/129056613/488321557-f993c2e9-fada-409f-a090-9a6a2b625924.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjkwNjcxMjYsIm5iZiI6MTc2OTA2NjgyNiwicGF0aCI6Ii8xMjkwNTY2MTMvNDg4MzIxNTU3LWY5OTNjMmU5LWZhZGEtNDA5Zi1hMDkwLTlhNmEyYjYyNTkyNC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTIyJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyMlQwNzI3MDZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1hZjMyODFlYjRjODhhY2U3MDQ3OGFlNGEyYzM1ZWRiOWRiNGFlYjkwMjk2YTk5MzYzMjJhN2I5ZDdjMzBjNzUwJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.arHYYGvjhg4xIp70Oc2h7HxpPq0au7Bh31bfd-H6b0I
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.