Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ca2633d

Browse files
committed
Added string methods; explicit use of 'value' as a concept
1 parent 694e999 commit ca2633d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Week1/REVIEW.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,12 @@ More about [logical operators](https://developer.mozilla.org/en-US/docs/Web/Java
310310
We already mentioned the `typeof` operator:
311311

312312
```js
313-
typeof 5 // -> 'number'
313+
typeof 5 // -> 'number'
314314
```
315315

316316
### Assignment operators
317317

318-
In addition to the simple asignment operator `=` there are also compound assignment operators such as `+=`. The following two assignments are equivalent:
318+
In addition to the simple assignment operator `=` there are also compound assignment operators such as `+=`. The following two assignments are equivalent:
319319

320320
```js
321321
x += 1;

0 commit comments

Comments
 (0)