-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[zh-cn]: Update translation of String.match() #14425
Conversation
Preview URLs External URLs (1)URL:
(comment last updated: 2023-07-20 00:48:26) |
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
const str = "Hmm, this is interesting."; | ||
|
||
str.match({ | ||
[Symbol.match](str) { | ||
return ["Yes, it's interesting."]; | ||
}, | ||
}); // returns ["Yes, it's interesting."] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please translate this
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Show resolved
Hide resolved
files/zh-cn/web/javascript/reference/global_objects/string/match/index.md
Outdated
Show resolved
Hide resolved
Co-authored-by: A1lo <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @JasonLamv-t
Description
Same as the title.
Motivation
Ditto.
Additional details
None.
Related issues and pull requests
#13975