diff --git a/content/roadmaps/106-javascript/content/100-javascript-introduction/101-history-of-javascript.md b/content/roadmaps/106-javascript/content/100-javascript-introduction/101-history-of-javascript.md index 7a985cdb5..91bd12dcc 100644 --- a/content/roadmaps/106-javascript/content/100-javascript-introduction/101-history-of-javascript.md +++ b/content/roadmaps/106-javascript/content/100-javascript-introduction/101-history-of-javascript.md @@ -1 +1,9 @@ -# History of javascript \ No newline at end of file +# History of JavaScript + +JavaScript was initially created by Brendan Eich of NetScape and was first announced in a press release by Netscape in 1995. It has a bizarre history of naming; initally it was named Mocha by the creator, which was later renamed to LiveScript. In 1996, about a year later after the release, NetScape decided to rename it to be JavaScript with hopes of capitalizing on the Java community (although JavaScript did not have any relationship with Java) and released Netscape 2.0 with the official support of JavaScript. + +Free Content +Brief History of JavaScript + + + diff --git a/content/roadmaps/106-javascript/content/100-javascript-introduction/102-javascript-versions.md b/content/roadmaps/106-javascript/content/100-javascript-introduction/102-javascript-versions.md index 5dae97591..baaedaa17 100644 --- a/content/roadmaps/106-javascript/content/100-javascript-introduction/102-javascript-versions.md +++ b/content/roadmaps/106-javascript/content/100-javascript-introduction/102-javascript-versions.md @@ -1 +1,9 @@ -# Javascript versions \ No newline at end of file +# Javascript Versions + +JavaScript was invented by Brendan Eich, and in 1997 and became an ECMA standard. ECMAScript is the official language name. ECMAScript versions include ES1, ES2, ES3, ES5, and ES6 + +Free Content +JavaScript Versions: How JavaScript has changed over the years +Brief History of JavaScript + + diff --git a/content/roadmaps/106-javascript/content/100-javascript-introduction/103-how-to-run-javascript.md b/content/roadmaps/106-javascript/content/100-javascript-introduction/103-how-to-run-javascript.md index 755f990b4..780d20764 100644 --- a/content/roadmaps/106-javascript/content/100-javascript-introduction/103-how-to-run-javascript.md +++ b/content/roadmaps/106-javascript/content/100-javascript-introduction/103-how-to-run-javascript.md @@ -1 +1,11 @@ -# How to run javascript \ No newline at end of file +# How to run Javascript + +JavaScript can be run in the browser by including the external script file using the `script` tag, write it within the HTML page using the `script` tag again, run it in the browser console or you can also use [REPL](https://www.digitalocean.com/community/tutorials/how-to-use-the-node-js-repl). + +Free Content +How To Add JavaScript to HTML +How To Write Your First JavaScript Program +How To Use the JavaScript Developer Console + + +