Uh oh!
There was an error while loading. Please reload this page.
Escaping, special characters - #425
Conversation
nazarepiedady
left a comment
There was a problem hiding this comment.
It is good enough to be considered for applying.
nazarepiedady
commented
Jun 2, 2024
@jonnathan-ls, we need your help here, do you mind reviewing this pull request? |
nazarepiedady
commented
Aug 5, 2024
@danilolmc, do you have some time to review this pull request and approve it if it is good? |
gabifs
left a comment
There was a problem hiding this comment.
@nazarepiedady@peruibeloko, encontrei essas alterações nos exemplos, que não me parecem corretas. Se puderem revisar novamente
| ```js run | ||
| let regexp = new RegExp("\d\.\d"); | ||
| let regexp = new RegExp("d.d"); |
There was a problem hiding this comment.
Me parece que aqui houve uma alteração no exemplo
| let regexp = new RegExp("d.d"); | |
| let regexp = new RegExp("\d\.\d"); |
There was a problem hiding this comment.
@gabifs, the priority is to conclude the translation first, and then update the content to be current as the English original content.
| ```js run | ||
| alert("\d\.\d"); // d.d | ||
| alert("d.d"); // d.d |
There was a problem hiding this comment.
Aqui aconteceu de novo:
| alert("d.d"); // d.d | |
| alert("\d\.\d"); // d.d |
No description provided.