1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-02 11:14:15 +02:00

Merge pull request #1836 from corbanmailloux/patch-1

[javascript/en] "wan't" -> "want"
This commit is contained in:
Adam Brenecki
2015-10-28 13:17:03 +10:30

View File

@@ -145,7 +145,7 @@ someOtherVar = 10;
// Variables declared without being assigned to are set to undefined. // Variables declared without being assigned to are set to undefined.
var someThirdVar; // = undefined var someThirdVar; // = undefined
// if you wan't to declare a couple of variables, then you could use a comma // if you want to declare a couple of variables, then you could use a comma
// separator // separator
var someFourthVar = 2, someFifthVar = 4; var someFourthVar = 2, someFifthVar = 4;