Book Image

Full JavaScript Masterclass Course: ES6 Modern Development [Video]

By : Frahaan Hussain
Book Image

Full JavaScript Masterclass Course: ES6 Modern Development [Video]

By: Frahaan Hussain

Overview of this book

<p>This course introduces beginners to the basic fundamentals of JavaScript with easy, hands-on exercises that you can practice right in the browser. Learn about everything there is to know about JavaScript applications and how to program them. A step by step approach is used to explain every facet of these topics. This course includes information on ECMAScript 6 (ES6), the next era of JavaScript!<br />Gain a good understanding of the following concepts with this course:</p> <ul> <li>What is JavaScript?</li> <li>JavaScript certifications</li> <li>How to program in the JavaScript language</li> <li>Features of the JavaScript programming language</li> <li>Coding semantics</li> <li>Website programming</li> <li>Design practices of applications</li> <li>Application programming</li> <li>Object-Oriented Programming</li> <li>Network programming</li> </ul> <p>This course will teach you everything about programming JavaScript applications and websites.</p> <p>All the code files are placed at&nbsp;<a href="https://github.com/PacktPublishing/Full-JavaScript-Masterclass-Course-ES6-Modern-Development" target="_blank">https://github.com/PacktPublishing/Full-JavaScript-Masterclass-Course-ES6-Modern-Development</a></p> <h1>Style and Approach</h1> <p>This course will teach you JavaScript via an in-depth, step-by-step approach that incorporates practical examples.</p>
Table of Contents (5 chapters)
Chapter 3
Objects
Content Locked
Section 8
HTML DOM
The Document Object Model (DOM) is a programming interface for HTML and XML documents. It represents the page so that programs can change the document structure, style, and content. The DOM represents the document as nodes and objects. That way, programming languages can connect to the page. A Web page is a document. This document can be either displayed in the browser window or as the HTML source. But it is the same document in both cases. The Document Object Model (DOM) represents that same document so it can be manipulated. The DOM is an object-oriented representation of the web page, which can be modified with a scripting language such as JavaScript. The W3C DOM and WHATWG DOM standards are implemented in most modern browsers. Many browsers extend the standard, so care must be exercised when using them on the web where documents may be accessed by various browsers with different DOMs.