You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/05-data-types/03-string/article.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -201,16 +201,16 @@ alert( str ); // hi
201
201
202
202
Więcej przykładów zobaczymy w kolejnych sekcjach.
203
203
204
-
## Changing the case
204
+
## Zmiana wielkości znaków
205
205
206
-
Methods[toLowerCase()](mdn:js/String/toLowerCase)and[toUpperCase()](mdn:js/String/toUpperCase)change the case:
206
+
Metody[toLowerCase()](https://developer.mozilla.org/pl/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase)i[toUpperCase()](https://developer.mozilla.org/pl/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase)zmieniają wielkość liter:
207
207
208
208
```js run
209
209
alert( 'Interface'.toUpperCase() ); // INTERFACE
210
210
alert( 'Interface'.toLowerCase() ); // interface
211
211
```
212
212
213
-
Or, if we want a single character lowercased:
213
+
Lub, jeśli chcemy, aby jeden znak był pisany małymi literami:
0 commit comments