Program composition of JavaScript tutorial
The basic structure of JavaScript scripting language is composed of control statements, functions, objects, methods, properties, etc., to implement programming.
Program control flow
In any language, program control flow is necessary. It can reduce the confusion of the entire program and make it execute smoothly in a certain way. The following are commonly used program control flow structures and statements in JavaScript:
1. if conditional statement
Basic format:
if (expression) {
Statement segment 1;
...
} else {
Statement segment 2;
....
}
Function: If the expression is true, execute statement segment 1; otherwise, execute statement segment 2.
2. For loop statement
Basic format:
for (initialization; condition; increment)
statement set;
Function: implement conditional loop, when the condition is established, execute the statement set, otherwise jump out of the loop body.
Explanation: The initialization parameter tells the starting position of the loop and must be assigned the initial value of the variable.
Condition: It is the condition used to determine when the loop stops. If the condition is met, execute the loop body, otherwise jump out.
Increment: Mainly defines how the loop control variable changes each time it loops. The three main statements must be separated by commas.
3. while loop
Basic format:
while (condition)
statement set;
This statement is the same as the For statement. When the condition is true, repeat the loop, otherwise exit the loop.
For and while statements
Both statements are loop statements. Using the For statement is easier to understand and more compact when processing related numbers; while the while loop has a more special effect on complex statements.
4. The break and continue statements
are the same as the C++ language. Use the break statement to make the loop jump out of For or while, and continue to skip the remaining statements in the loop and enter the next loop.
Function
Function provides programmers with a very convenient ability. Usually when designing a complex program, the program is always divided into some relatively independent parts according to the functions to be completed, and a function is written for each part. Thus, each part is fully independent, has a single task, and the program is clear, easy to understand, easy to read, and easy to maintain. JavaScript functions can encapsulate modules that may be used multiple times in a program. And can be called as a result of event-driven procedures. Thereby implementing a function to associate it with the event driver. This is different from other languages.
1. JavaScript function definition
Function function name (parameters, variables) {
function body;.
Return expression;
}
Note: When calling a function, any variable or literal can be used Passed as arguments.
Function is defined by the keyword Function.
Function name: Define the name of your own function.
The parameter list is the value passed to the function for use or operation. Its value can be a constant, variable or other expression.
Call a function by specifying the function name (actual parameters).
Must use Return to return the value.
Function names are case-sensitive.
2. Formal parameters in the function
In the definition of the function, we see that there is a parameter list after the function name. These parameter variables may be one or several. So how can we determine the number of parameter variables? In JavaScript, you can check the number of parameters through arguments.Length.
Example:
Function function_Name(exp1,exp2,exp3,exp4)
Number = function _Name.arguments.length;
if (Number>1)
document.wrile(exp2);
if (Number& gt ; 2)
document.write (exp3);
if (number & gt; 3)
document.write (exp4);
...
is the content composed of the program of the javascript tutorial, more related content Please pay attention to the PHP Chinese website (www.php.cn)!

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

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.
