You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

55 lines
2.8 KiB

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Learning Website</title>
<link href="/styles/styles.css" rel="stylesheet" type="text/css">
<link href="/webdevelopment/styles/styles.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<article>
<h1 class="coursetitle">JavaScript Essential Training</h1>
<h2 class="lecturer">LinkedIn Learning : Morten Rand-Hendriksen</h2>
<h1 class="episodetitle">JavaScript: An Introduction</h1>
<h2 class="sectiontitle">Navigating the JavaScript Language</h2>
<p>JavaScript has evolved over time and is designed to provide interactivity to web pages. There doesn't seem to be an official site for online documentation but these sites may prove useful.</p>
<p>The DevDocs documentation for JavaScript</p>
<pre>
<a href="https://devdocs.io/javascript/">https://devdocs.io/javascript/</a>
</pre>
<p>The Mozilla Developer Network documentation for JavaScript</p>
<pre>
<a href="https://devdocs.io/javascript/">https://devdocs.io/javascript/</a>
</pre>
<p>JavaScript is an ECMAScript compatible language - the latest version is ECMAScript 6 but browser support for this is patchy so code written in ECMAScript 6 normally has to be run through a transpiler such as Babel. Babel is not covered here but is covered in <a href="https://www.linkedin.com/learning/learning-ecmascript-6-plus-es6-plus/using-modern-javascript-today">Learning ECMAScript 6</a> with Eve Porcello.</p>
<p>There are lots of JavaScript libraries with jQuery being the most popular and JavaScript frameworks such as AngularJS, Vue.js and Reactjs are all the rage at the moment!</p>
<p>Node.js is a JavaScript platform and runtime environment that allows you to run JavaScript on the server side, bearing in mind that JavaScript has traditionally been a client-side language executed in a browser.</p>
</article>
<button class="next" onclick="window.location.href='basics.html';">
Next Chapter - The Basics
</button>
<button class="coursebutton" onclick="window.location.href='javascriptessentialtraining.html'">
Course Contents
</button>
<button class="webdevbutton" onclick="window.location.href='/webdevelopment/webdevelopment.html'">
Web Development Page
</button>
<button class="homebutton" onclick="window.location.href='/index.html'">
Home
</button>
</body>
</html>