Chuanzhi Podcast Learning JavaScript Basics_Basic Knowledge
1. The difference between JavaScript and java
1. JavaScript is a product of Netscape, and Java is a product of Sun.
2.JavaScript is object-based and Java is object-oriented.
3. JavaScript only needs to be interpreted before it can be executed. Java needs to be compiled into a bytecode file first and then executed.
4.JavaScript is weakly typed and Java is strongly typed.
Summary: In fact, java and JavaScript have almost nothing to do with each other except that their names are similar, and JavaScript borrows some ideas from java.
2. How to combine JavaScript with Html
1. Tag form
We store JavaScript code in the tag pair <script>. . . </script>. Can be placed anywhere.
2. Import method
Use the src attribute of the script tag to import a JavaScript file.
For example:
Note: The type attribute must be added to the script tag in the specification.
3. JavaScript syntax
1. Variables
are defined by the keyword var. Since it is a weak type, there is no need to specify a specific data type.
Example: var x = 3;
2) The special constant value in JavaScript: undefined. When a variable is used without initialization, the value of the variable is undefined.
2. Operators
Like other programming languages, similar to java. It also supports the string concatenation operator ( ) and the ternary operator (? :). The difference is that the ternary operator does not need to have a value and can be directly output in the statement.
3. Statement
The statement format is similar to that of various programming languages, and there are also judgments, selections and loops. But pay attention to a few points:
1) Non-zero is true in JavaScript. For example, the following code
var x = 3;
if(x==4)//can perform comparison operations.
if(x=4)//Assignment operations can be performed, and judgments can also be made. No error is reported. The result is true, so you can write if(4==x) backwards after the if statement, so if you write 4=x, an error will be reported. Mistakes can be corrected.
2) There are no type restrictions in switch
3) The loop must have an end condition
4) To connect boolean operations, you must use && or ||, if you use & or |, bit operations will be performed
4. Function
1. General function format:
function function name (formal parameters...)
{
execution statement;
return return value;
}
Note: 1) The return statement does not need to be written, the function must be called before it will run.
2) There is no need to add var to formal parameters, which are weak types.
3) Call a function with parameters, but do not pass it a value, or pass more values than the number of parameters. The function will still run. Or call a function without parameters and pass a value to it, and the function will still run. .
4) There is no overloaded function form in JavaScript
Because multiple parameters of a function are actually encapsulated in an arguments array in JavaScript, any number of parameters can be accepted, but it is best to follow the defined form Parameters pass the actual parameters.
5) Pay attention to the following example
var show = demo();
The above statement indicates that the show variable receives the return value of the demo function.
var show = demo;
The above statement means that show and demo represent the same function, pointing to the same object
2. Dynamic function
is implemented through JavaScript’s built-in object Function. As follows:
var demo = new Function("x,y","var sum = x y; alert(sum);");
demo(5,2);
Dynamic functions are different from general functions What's more, parameters and function bodies can be passed through parameters and can be specified dynamically.
3. Anonymous function
Format: function()
Example: var demo = function(){alert("snow");}
demo();
Note: Usually used when defining the behavior of event properties.
4. Other forms
var p = new Object();
p.name ="lisi";
p.age=31;
p.demo = show;
alert(p.name ":" p.age demo(4,5));
function show(x,y){return x y;}
5. Array in In JavaScript, arrays combine the characteristics of collections and can store any elements, and the length is also variable. And when assigning values, there are not braces but square brackets, as follows:
var arr = new Array();
arr[0] = "ashf";
arr[1] = 258;
Or var arr = ["ashf",258,true,'sfa'];
Be careful not to use int x when traversing, but var x, which is a weak type.
Two-dimensional array: var arrr = [[Element,Element....],[Element...],[Element....]....]
6. Built-in Object
In JavaScript, there are many built-in objects, such as String, Object, Date, etc. You can check the relevant help documents (if necessary, you can leave your email address). Here we will briefly explain some of the differences. 1. The length in String is an attribute, not a method
2. The substring (a, b) method in String takes the characters from a to b-1, while the substr (a, b) method starts from a and takes b characters
3.a.toString(b) returns the a form of b base
4.parseInt ("a", b) will convert the b base a into the decimal form of a
7. Custom objects
In JavaScript, in addition to the built-in objects already provided, you can also customize objects.
Method 1:
function car(){}
var c = new car();
c.color = "white";
c.tyre = 4;
c .run = show;
function show(){alert(c.color c.tyre “run”);}
c.run();
Method 2:
function car(color, tyre)
{
this.color = color;
this.tyre = tyre;
}
var c = new car(“white”,4);
alert(c .color ":" c["tyre"]);
8. Statements for operating objects
1. with statement
When calling multiple members of an object, In order to simplify the call, avoid repeated writing in the format of "object.".
Format: with (object) { There is no need to add (object.property) to the code here}
var p = new car("white",4);
alert(c.color ":" c ["tyre"]);
can be written as:
var p = new car("white",4);
with(car){alert(color ":" tyre)};
Note: The with statement defines the scope of an object, in which members of the object can be directly called.
for...in statement
For variable in object statement: traverse the members in the object, if traversing the array, the variable is the subscript
Get the value object [variable] of the object, the variable is the attribute name

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
