mirror of
https://github.com/flynx/Course-JavaScript.git
synced 2025-11-03 05:20:07 +00:00
typo fix...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
79fb72406d
commit
8c97e3f073
@ -160,7 +160,7 @@
|
|||||||
|
|
||||||
// But in cases where the same operation is defined for both types
|
// But in cases where the same operation is defined for both types
|
||||||
// the result may seem less predictable, for example `+` defines both
|
// the result may seem less predictable, for example `+` defines both
|
||||||
// number addition and string concatination:
|
// number addition and string concatenation:
|
||||||
1 + 2 // -> 3
|
1 + 2 // -> 3
|
||||||
'a' + 'b' // -> 'ab'
|
'a' + 'b' // -> 'ab'
|
||||||
|
|
||||||
@ -168,12 +168,12 @@
|
|||||||
1 + '2' // -> '12'
|
1 + '2' // -> '12'
|
||||||
|
|
||||||
// This feature can both help make the code simpler and more generic if
|
// This feature can both help make the code simpler and more generic if
|
||||||
// used conciously and at the same time can prove quite frustrating if
|
// used consciously and at the same time can prove quite frustrating if
|
||||||
// neglected.
|
// neglected.
|
||||||
//
|
//
|
||||||
// This neglect and carelessness is the main reason it is quite popular
|
// This neglect and carelessness is the main reason it is quite popular
|
||||||
// to avoid type coercion and instead overuse strict comparisons and
|
// to avoid type coercion and instead overuse strict comparisons and
|
||||||
// deffensively over-check everything, at times raised to such levels as
|
// defensively over-check everything, at times raised to such levels as
|
||||||
// to define whole languages (like TypeScript) around this.
|
// to define whole languages (like TypeScript) around this.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user