We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e64d29 commit 0998e61Copy full SHA for 0998e61
translations/pt-BR/README.md
@@ -158,7 +158,7 @@ A composição de duas ou mais funções retornando uma nova função.
158
const compose = (f,g) => x => f(g(x));
159
160
const toUpperCase = x => x.toUpperCase();
161
-const exclaim = x => x + '!';
+const exclaim = x => `${x}!`;
162
163
const angry = compose(exclaim, toUpperCase);
164
@@ -172,8 +172,8 @@ angry("stop this");
172
173
174
175
176
-const moreExclaim = x => x + '!!!!!';
+const moreExclaim = x => `${x}!!!!!`;
177
178
const reallyAngry = compose(exclaim, compose(toUpperCase, moreExclaim));
179
0 commit comments