JavaScript common statements loop, judgment, string to number

JavaScript common statements loop, judgment, string to number

1. switch

Select one of multiple code blocks to be executed

switch(e) {
     case 1:
        //e is 1, execute break here;
     case 2:
        //e is 2, execute break here;
     default:
        // None of them meet the requirements to execute here} 

Notice:

  • It is not necessary to use break to interrupt the last case in switch code block. The code block ends naturally here.
  • Switch case uses strict comparison (===), the value must be of the same type to be matched.
  • If JavaScript encounters the break keyword, it will jump out of the switch code block, so the system will not continue to execute, which can improve performance.

2. While Loop

If the following condition is not met, the loop will continue until the parameter "i" is not less than 10

while (i < 10) {
    text += "The number is" + i;
    i++;
}

3. Do/While Loop

This is similar to the above, but it will be executed at least once, because it is executed first and then judged.

do {
    text += "The number is " + i;
    i++;
 }
while (i < 10);

  • for - loop executes a block of code a specified number of times.
  • for/in - loop through the properties of an object
  • while - loops through a specified block of code while a specified condition is true
  • do/while - Also loops through a specified block of code while a specified condition is true, but the loop executes the block of code once before evaluating the condition

3. Convert string to number

Many students will encounter the problem of converting strings to numbers, but they can't remember the words to convert, or they are too lazy to write them. In this case, just add a + sign in front of the variable.

Like this:

let a = "12" // This is a string console.log(+a) // Now it is converted to the number 12

This concludes this article about common JavaScript statements for loops, judgments, and string to number conversion. For more related content on common JavaScript statements, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Javascript basics loop
  • How to use async and await correctly in JS loops
  • Four data type judgment methods in JS
  • About the difference between js typeof and instanceof in judging data types and their development and use
  • An example of elegant writing of judgment in JavaScript
  • How to convert a string into a number in JavaScript
  • parseInt parseFloat js string conversion number

<<: 

>>:  Solution for Baidu site search not supporting https (tested)

Recommend

MySQL master-slave principle and configuration details

MySQL master-slave configuration and principle, f...

JavaScript implements AI tic-tac-toe game through the maximum and minimum algorithm

Without further ado, let’s run the screenshot dir...

Docker modifies the configuration information of an unstarted container

When I first used docker, I didn't use docker...

How to call a piece of HTML code together on multiple HTML pages

Method 1: Use script method: Create a common head...

select the best presets to create full compatibility with all browsersselect

We know that the properties of the select tag in e...

Summary of DTD usage in HTML

DTD is a set of grammatical rules for markup. It i...

Teach you how to use webpack to package and compile TypeScript code

TypeScript Bundling webpack integration Usually, ...

Detailed explanation of key uniqueness of v-for in Vue

Table of contents 1. DOM Diff 2. Add key attribut...

How to use fdisk to partition disk in Linux

Commonly used commands for Linux partitions: fdis...

How to use the yum command

1. Introduction to yum Yum (full name Yellow dogU...

Detailed tutorial on installing pxc cluster with docker

Table of contents Preface Preliminary preparation...

HTML form tag tutorial (5): text field tag

<br />This tag is used to create a multi-lin...