We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72223fc commit 03018d9Copy full SHA for 03018d9
basics/Type-Coercion.js
@@ -1,4 +1,4 @@
1
-// Type coercion happens when JavaScript implicitly change thr type of a variable to suit the situation.
+// Type coercion happens when JavaScript implicitly change the type of a variable to suit the situation.
2
let v;
3
4
v = 7 + "7"; // 77 - JS coverts the 7 to string and concatenate it to "77" - js reads + here as a concatenates and not an arithmetic operator
0 commit comments