Skip to content

Commit 4309102

Browse files
authored
Merge pull request #190 from javascript-tutorial/sync-a6fdfda0
2 parents 2f60a44 + bc77bca commit 4309102

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ 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-
let ms = 1e-6; // شش صفر در چپ ۱
53+
let mcs = 1e-6; // شش صفر در سمت چپ ۱
5454
```
5555

5656
اگر ما تعداد صفرهای `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)