diff --git a/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md b/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md index 39ee1d5e6..ba7b5a2fd 100644 --- a/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md +++ b/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md @@ -105,7 +105,7 @@ var myFirstBoolean = true;//Boolean var myFirstInteger = 35;//Number var myFirstFloat = 2323.4545; //Number (with decimals) -var myFirstString = 'Hello Wold'; //String +var myFirstString = 'Hello World'; //String var myFirstObject = {'name' : 'Ramon', 'Age': 32}; //Object with 2 properties var myFirstArray = [23,'Hello',8.54,null,544]; //Array of 5 items var myFirstNull = null;//Null