Skip to content

Commit 0a3d19e

Browse files
committed
merging all conflicts
2 parents 2f60a44 + a6fdfda commit 0a3d19e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

1-js/05-data-types/02-number/article.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,17 @@ alert( 7.3e9 ); // 7.3 billions (same as 7300000000 or 7_300_000_000)
4444
حالا بگذارید مقداری خیلی کوچک بنویسیم. مثلا؛ یک میکروثانیه، (یک میلیونیوم ثانیه):
4545

4646
```js
47-
let ms = 0.000001;
47+
let mсs = 0.000001;
4848
```
4949

5050
دقیقا مثل قبل، استفاده از `"e"` میتواند کمک کند. اگر ما بخواهیم که از نوشتن صفرها خودداری کنیم، میتوانیم بنویسیم که:
5151

5252
```js
53+
<<<<<<< HEAD
5354
let ms = 1e-6; // شش صفر در چپ ۱
55+
=======
56+
let mcs = 1e-6; // six zeroes to the left from 1
57+
>>>>>>> a6fdfda09570a8ce47bb0b83cd7a32a33869cfad
5458
```
5559

5660
اگر ما تعداد صفرهای `0.000001` را بشماریم، شش تا از آنها موجودست. بنابراین طبعا می‌شود `1e-6`.

1-js/11-async/08-async-await/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ console.log(user);
136136
137137
If we're not using modules, or [older browsers](https://caniuse.com/mdn-javascript_operators_await_top_level) must be supported, there's a universal recipe: wrapping into an anonymous async function.
138138
139-
Lke this:
139+
Like this:
140140
141141
```js
142142
(async () => {

0 commit comments

Comments
 (0)