Skip to content

Commit 5aeb121

Browse files
committed
merging all conflicts
2 parents 8647eb5 + d78b01e commit 5aeb121

File tree

13 files changed

+12
-8
lines changed

13 files changed

+12
-8
lines changed

1-js/01-getting-started/4-devtools/article.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
شتێکی لەم شێوەیە دەچێت:
2525

26-
![chrome](chrome.png)
26+
![chrome](chrome.webp)
2727

2828
دەرکەوتنی ئامرازەکانی گەشەپێدەر بەندە بە وەشانی کرۆمەکەتەوە. جار جار دەگۆڕێت بەڵام دەبێ هاوشێوە بێت.
2929

@@ -51,7 +51,11 @@
5151

5252
سەفاری (کە لەلایەن ویندۆز/لینوکسەوە پشتگیری ناکرێ) لێرەدا کەمێک تایبەتە. سەرەتا پێویستە "مێنۆی پەرەپێدان" چالاک بکەین.
5353

54+
<<<<<<< HEAD
5455
Preferences بکەرەوە و بچۆ بۆ لاپەڕەی "Advanced". لە خوارەوە بۆکسێکی هەڵبژاردن هەیە:
56+
=======
57+
Open Settings and go to the "Advanced" pane. There's a checkbox at the bottom:
58+
>>>>>>> d78b01e9833009fab534462e05c03cffc51bf0e3
5559
5660
![safari](safari.png)
5761

-41.1 KB
Binary file not shown.
22.2 KB
Loading
48.3 KB
Loading
-67.8 KB
Binary file not shown.
83 KB
Loading
55 KB
Loading

1-js/02-first-steps/09-comparison/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,5 +212,5 @@ Why did we go over these examples? Should we remember these peculiarities all th
212212
- Comparison operators return a boolean value.
213213
- Strings are compared letter-by-letter in the "dictionary" order.
214214
- When values of different types are compared, they get converted to numbers (with the exclusion of a strict equality check).
215-
- The values `null` and `undefined` equal `==` each other and do not equal any other value.
215+
- The values `null` and `undefined` are equal `==` to themselves and each other, but do not equal any other value.
216216
- Be careful when using comparisons like `>` or `<` with variables that can occasionally be `null/undefined`. Checking for `null/undefined` separately is a good idea.

1-js/05-data-types/04-array/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Let's say we want the last element of the array.
100100

101101
Some programming languages allow the use of negative indexes for the same purpose, like `fruits[-1]`.
102102

103-
Although, in JavaScript it won't work. The result will be `undefined`, because the index in square brackets is treated literally.
103+
However, in JavaScript it won't work. The result will be `undefined`, because the index in square brackets is treated literally.
104104

105105
We can explicitly calculate the last element index and then access it: `fruits[fruits.length - 1]`.
106106

1-js/06-advanced-functions/06-function-object/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ welcome(); // Hello, Guest (nested call works)
326326

327327
Now it works, because the name `"func"` is function-local. It is not taken from outside (and not visible there). The specification guarantees that it will always reference the current function.
328328

329-
The outer code still has its variable `sayHi` or `welcome`. And `func` is an "internal function name", the way for the function to can call itself reliably.
329+
The outer code still has its variable `sayHi` or `welcome`. And `func` is an "internal function name", the way for the function to call itself reliably.
330330

331331
```smart header="There's no such thing for Function Declaration"
332332
The "internal name" feature described here is only available for Function Expressions, not for Function Declarations. For Function Declarations, there is no syntax for adding an "internal" name.

0 commit comments

Comments
 (0)