MyPage is a personalized page based on your interests.The page is customized to help you to find content that matters you the most.


I'm not curious

History and Evolution of JavaScript

Published on 12 August 18
0
0

JavaScript is a programming language that can be used to add interactivity to Web pages. JavaScript is often called "script writing language" ( scripting language ) denoting that it is easier to write scripts than to program. In this case, it is a distinction without the distinction. A Script is a program that is contained internally within an HTML page (which is the original method of writing scripts) or resides in an external file (the currently preferred method).

In HTML pages, as it is included in the script tag <script>, the script text does not appear on the user's screen, and the web browser is the one that executes the JavaScript program. The <script> tag is often found within the <head> section of the HTML page, but you can also include hyphens, if desired, in the <body> section.

History and Evolution of JavaScript - Image 1

The internal scripts that write text on the screen, or write HTML, it is preferable to insert them in the <body> section.

JavaScript is not Java

Despite the name, JavaScript and Java have almost nothing to do with each other. Java is a full-featured programming language, developed and marketed by Sun Microsystems. With Java, a descendant of the C and C ++ programming languages, programmers can create entire applications and control the user's electronic devices.

Unlike other languages, Java keeps the promise of compatibility between different platforms (cross platform), which means that a programmer could write a Java program that runs on any kind of computer, whether you run this Windows, Mac OS X or any of the different versions of Unix. In practice, Java has not completed that dream, due in large part to disputes between Sun and Microsoft regarding language direction.

First of all, Microsoft got involved because it wanted to integrate Java into Windows in its own way (a way that Sun says would make Java work in a way in Windows and otherwise in other computers, thus failing to fulfill Java's main purpose). ); later, Microsoft introduced Java for Windows, once it created its own Java-style language, C#.

After a lot of litigation between the two companies (and a big deal in favor of Sun), Microsoft eliminated its Windows Java and, now, the user can install the latest Java version of Sun for Windows (or Linux) from their official page. Mac OS X has Java installed as part of the operating system.

In addition to the independent applications, the main use of Java is on the client side, that is, on the user's browser, is the creation of applets, small programs that are downloaded on the Internet and run on Web browsers. Due to the cross-platform nature of Java, these applets should also run on any browser that supports Java. In recent years, many Java applets have been replaced by Macromedia Flash animations, which are usually easier to create than Java applets.

Today, Flash is slowly being replaced by the new possibilities offered by HTML5 along with CSS3 and jQuery. The applets are embedded in the Web pages using the HTML <object> tag, with additional information specified by the Java applet of the server and executed in the screen area specified in the tag.

The origin of JavaScript

If JavaScript has nothing to do with Java, then why do they have similar names? It is another example of one of the most annoying parciularities of the computer industry: the triumph of marketing over substance.

When Netscape added some basic scriptwriting possibilities to its Navigator navigator, it named this scripting language as LiveScript. Around the same time, Java was getting a lot of press as the "Next big thing in computing . When Netscape reviewed Navigator to run Java applets in Navigator 2, LiveScript was renamed JavaScript, hoping to file some of the Java brilliance.

The mere fact that JavaScript and Java are very different programming languages did not stop the marketing geniuses of Netscape. When Microsoft saw that JavaScript was gaining popularity among Web developers, it realized that it had to add certain scripting capabilities to Internet Explorer. They could have adopted JavaScript, but as usual, Microsoft chose to develop its own language, which works much like JavaScript, but which is not exactly the same. The JavaScript version developed by Microsoft is called JScript.

What JavaScript can do

With JavaScript, you can do many things to make your web pages more interactive and provide a more interesting experience to visitors to your site. JavaScript allows you to create an active user interface, which offers feedback to visitors as they browse their pages.

You can use JavaScript to make sure that users enter valid information in the forms, which will result in savings in time. If your forms require calculations, you can do them with JavaScript on the user's computer, without having to perform server-side processes.

There is a distinction that must be recognized: the programs that run on the user's computer are known as client-side programs; the programs that run on the server are known as server-side programs.

With JavaScript, you can create personalized HTML pages on the fly, depending on the actions executed by the user. Suppose you are in a travel site and the user clicks on Hawaii as a destination. You can make the latest Hawaii travel deals appear in a new window. JavaScript controls the browser, so you can open new windows, display alert windows and insert personalized messages in the status bar of the browser window.

Because JavaScript has a set of date and time functions, you can generate documents with clocks and time clocks. You can also take care of forms, set cookies, build HTML pages on the fly and create web-based applications.

There are lots of popular libraries of codes written in JavaScript language such as Angular, Node.JS, JS React, jQuery, etc. There are lots of online training companies such as High School Technology Services or Coding Bootcamps that provide specialized training for JavaScript. Indeed, nowadays, programmers can use a single JavaScript code using React Native library to develop iOS and Android native Apps.

What JavaScript can not do

JavaScript is a language of the client; that is, it is designed to perform your work on your computer (yours), not on the server. Therefore, JavaScript suffers some inherent limitations, most of them for security reasons.

JavaScript does not allow reading or writing files on client machines. To a large extent, that's good, because you probably would not want a Web page to be able to read the files on your hard drive or be able to write viruses on your disk or be able to manipulate the files on your computer. The only exception is that JavaScript can write in the browser cookie file, but even this feature has its limitations.

JavaScript does not allow writing files on server machines. There are several ways to do this (such as storing impact counters on the page or filling in data forms), but JavaScript is not allowed to do these things. Instead, you will need to have a program on your server to manipulate and store this data. Also, JavaScript can not close a window that it has not opened. This is to avoid a site taking control of your browser and start closing windows from other sites. Lastly, JavaScript cannot read information from an open Web page from another server.

1
This blog is listed under Development & Implementations Community

Related Posts:
Post a Comment

Please notify me the replies via email.

Important:
  • We hope the conversations that take place on MyTechLogy.com will be constructive and thought-provoking.
  • To ensure the quality of the discussion, our moderators may review/edit the comments for clarity and relevance.
  • Comments that are promotional, mean-spirited, or off-topic may be deleted per the moderators' judgment.
You may also be interested in
 
Awards & Accolades for MyTechLogy
Winner of
REDHERRING
Top 100 Asia
Finalist at SiTF Awards 2014 under the category Best Social & Community Product
Finalist at HR Vendor of the Year 2015 Awards under the category Best Learning Management System
Finalist at HR Vendor of the Year 2015 Awards under the category Best Talent Management Software
Hidden Image Url

Back to Top