Merge pull request #150 from Anton-KG/patch-1

lesson 6 "Type conversion" fix typo
This commit is contained in:
Ilya Kantor 2017-08-30 16:47:01 +02:00 committed by GitHub
commit 1d27fcff73

View file

@ -1,6 +1,6 @@
# Type Conversions # Type Conversions
Most of the time, operators and functions automatically convert a value to the right type. That's called "type coercion". Most of the time, operators and functions automatically convert a value to the right type. That's called "type conversion".
For example, `alert` automatically converts any value to a string to show it. Mathematical operations convert values to numbers. For example, `alert` automatically converts any value to a string to show it. Mathematical operations convert values to numbers.