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
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 typical hot spot nowadays?
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.
<script>The tag has two attributes: src and type: </script>
- src: the address of the external js file that needs to be imported. Once the js file is imported, the tag body The js code becomes invalid.
- type: Specify the type of script, fixed writing method: text/javaScript
The script tag can be placed anywhere in the HTML file, but it is generally placed in the head tag.
2JavaScript specification
The loading order of js is from top to bottom.
① Regarding the writing of semicolons
The semicolon after each sentence in js can be omitted, but for the sake of standardization, it is generally None will be omitted, just like in Java.
Because if there are several sentences in a line, compilation without semicolon will report an error.
The prerequisite for omitting the semicolon must be that one sentence occupies one line.
②About syntax error reporting
The syntax error in js can still be executed. This is different from Java. Java cannot run if an error is reported during compilation.
And what’s even more interesting is that the <script> tags are independent of each other. </script>
That is to say, there is a problem with the first <script> tag, but there is no problem with the second <script> tag. Then the code in the second tag will execute normally after running. </script>
Is this okay?
3JavaScript variable
The variable data type of js is a weak type. What is a weak type?
There are types, but the type is not emphasized. Specifically, the code is used to explainFive primitive data types:
Variables in js It is particularly interesting that the definitions are modified with the var keyword, which is the abbreviation of variate (variable).
And the var keyword is not necessary and can be omitted, but it is not recommended to omit it for the sake of standardization.
But it has a type. typeof (variable name) can determine the data type of the specified variable.
①number type
Variable a is defined as 100. It does not indicate what type it is, but its type is number type.
If it is in Java, it needs to be defined like this: number a=100;
But in js, you only need to remember the var keyword.
And what’s even more amazing is that variable a can keep changing its data type, which is simply unimaginable in Java.
②boolean type
In ①, a is still a number type, and in ②, it can be redefined as a boolean type.
③string type
The string type contains strings and characters.
The operations between strings are also spliced together, which is the same as in Java.
④null type
The null type is an object type, and the object type without assignment is a null type.
⑤undefined type
Uninitialized type, I don’t know what type it is.
This variable has not been named yet, so variable b is used in the above picture because a has been assigned a value.
The data types in Java include basic data types and reference data types, and there are also reference data types in js.
Everything in Java is an object, and Object can represent all objects.
Objects in js are also Objects. Their use is very similar to the way objects are created in Java, but there are differences.
[Recommended learning: javascript advanced tutorial]
The above is the detailed content of Is there any relationship between javascript and java?. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
