Is there any relationship between javascript and java?

醉折花枝作酒筹
Release: 2021-07-16 14:05:23
Original
2999 people have browsed it

JavaScrip and Java are essentially unrelated. In terms of historical sources, they still have a certain origin. In fact, JavaScript was called LiveScript in its early days. At that time, Java was already very popular, so LiveScript was renamed Javascr

Is there any relationship between javascript and java?

Operating environment for this tutorial: Windows 7 system, JavaScript version 1.8.5, Dell G3 computer.

1. Overview of JavaScript

What is the relationship between JavaScript and Java?

What surprises me is that essentially they have nothing to do with each other.

I can’t believe it, then why do you look so similar?

As far as historical sources are concerned, they still have a certain origin. In fact, JavaScript was called LiveScript in its early days.

At that time, Java was already very popular, so LiveScript was renamed Javascript.

To put it bluntly, isn’t this a typicalhot spotnowadays?

Many Java programmers want to learn a scripting language. When they see how it is so similar to Java, they feel very familiar with it, so they might as well learn it.

JavaScrip has taken advantage of Java's hot spots, which has greatly helped its development. Of course, its language itself is also excellent, and it has slowly been recognized by the public.

It has always been at the top of the programming language rankings. When it comes to front-end Javascript, it is also an unavoidable hurdle.

I learned HTML a few days ago. If I say:

The main function of HTML is to create the structure of a web page.

The main function of CSS is to beautify the page.

Then the main role of JavaScript is to interact with users.

What is the difference between JavaScript and Java?

  • Java is a compiled language that generates bytecode files before running.
  • JavaScript is an interpreted language and does not generate intermediate files.
  • Java requires a Jvm virtual machine to run.
  • JavaScript can basically run as long as there is a browser.

But the comment formats of js and Java are exactly the same. Next, we will study the syntax of js carefully.

2. JavaScript syntax

1 Introduction of JavaScript

The introduction method is very similar to CSS. CSS is the style tag, and js is the script tag.

①Introduce

internally to write js code directly in the HTML file, and its representative tag is the script tag.

Just write the corresponding js syntax in the tag.

There can be multiple script tags in one HTML file.

②External introduction

Create a special js file externally, and the JavaScript code is written in it.

If necessary, just use the src attribute in the script tag to introduce it in the HTML file.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!