Skip to content

Commit b6bb4a3

Browse files
Update 1-js/02-first-steps/07-type-conversions/article.md
Co-authored-by: Bogdan Bacosca <bogdanbacosca@protonmail.com>
1 parent a997f19 commit b6bb4a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/07-type-conversions/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let value = true;
2525
alert(typeof value); // boolean
2626

2727
*!*
28-
value = String(value); // acum valoarea este un "adevărat" șir
28+
value = String(value); // acum valoarea este un șir(string?): "adevărat"
2929
alert(typeof value); // șir
3030
*/!*
3131
```

0 commit comments

Comments
 (0)