1. switchSelect 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:
2. While LoopIf 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 LoopThis 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);
3. Convert string to numberMany 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:
|
>>: Solution for Baidu site search not supporting https (tested)
MySQL master-slave configuration and principle, f...
Without further ado, let’s run the screenshot dir...
When I first used docker, I didn't use docker...
Method 1: Use script method: Create a common head...
We know that the properties of the select tag in e...
DTD is a set of grammatical rules for markup. It i...
This article uses an example to describe how MySQ...
TypeScript Bundling webpack integration Usually, ...
Table of contents 1. DOM Diff 2. Add key attribut...
Background: I want to install a SAP ECC server an...
Commonly used commands for Linux partitions: fdis...
1. Introduction to yum Yum (full name Yellow dogU...
Table of contents Preface Preliminary preparation...
1. Find a suitable version of redis for docker Yo...
<br />This tag is used to create a multi-lin...