1 / 2

Guide-for-JavaScript

Definition of JavaScript<br>JavaScript is a scripting language or programming language that allows you to implement complex things on web pages u2014 each time a web page displays more than just static information. - You can bet that JavaScript is probably involved. It is the third layer of layer cake covered by standard web technologies, two of which (HTML and CSS) we have in other parts of the learning area much more detailed.

isharoyhr
Download Presentation

Guide-for-JavaScript

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. An Introduction toJavaScript Definition ofJavaScript JavaScript is a scripting language or programming language that allows you to implement complex things on web pages — each time a web page displays more than just static information. - You can bet that JavaScript is probably involved. It is the third layer of layer cake covered by standard web technologies, two of which (HTML and CSS) we have in other parts of the learning area much more detailed. *HTML is the markup language we use to structure and make sense of our web content, such as defining paragraphs, headings, and data tables, or embedding images and videos into thepage. *CSS is a language of style rules that we use to apply styling to our HTML content, such as setting background colors and fonts, and defining our content in multiplecolumns. *JavaScript is a scripting language that allows you to dynamically update content, control multimedia, animate images, and create almost anything else. (Okay, not all, but it's amazing what you can achieve with a few lines of JavaScript code.) WhyJavaScript? When JavaScript was created, it first had a different name: "LiveScript". But Java was very popular at that time, so it was decided that positioning a new language as a "younger brother" of Java would help. But as it developed, was JavaScript, a completely independent language with its own specification called ECMAScript, and now It has no relationship at all toJava.

  2. https://www.exltech.in/java-training.html What does JavaScript do on yourpage? Here we start to look at a code and explore what happens when you run JavaScript on yourpage. Let's briefly tell the story of what happens when you load a web page into a browser (first in our article how CSS works). When you load a web page in your browser, run your code (HTML, CSS, and JavaScript) in an execution environment (Browser-tab). This is like a factory that takes raw materials (the code) and a product (the site). The JavaScript is executed by the browser's JavaScript engine after HTML and CSS have been assembled and merged into a web page. This ensures that the structure and style of the page already exists when the JavaScriptstarts. This is a good thing, because a very common use of JavaScript is to change the HTML and CSS dynamically to update a user interface via the Document Object Model API (as mentioned above). If the JavaScript loaded and tried to run before the HTML and CSS were there to affect then error would occur. BrowserSecurity This means that in most cases the code in each tab is completely separated and the code in one tab cannotdirectlyaffectthecodeinanothertab-oronanotherwebsite.Thisisagoodsecuritymeasure — if not, Pirates could write code to steal information from other sites, and others such badthings. What makes JavaScriptunique? There are at least three great things about JavaScript: Full integration with HTML /CSS. Simple things are madeeasy. Support by all popular browsers and enabled bydefault. Javascript is the only browser technology that combines these threethings. This makes JavaScript unique. Therefore, it is the most widely used tool for creating browser interfaces. While you are planning to learn a new technology, it is beneficial to review your prospects. So let's go to the modern trends that affect it, including new languages and browsercapabilities. For moredetails:https://www.exltech.in/

More Related