Select StructureSingle branch if structure if(condition){ Code executed after the condition is met} If there is only one statement in the curly braces, you can omit the curly braces, but this is strongly not recommended. if(condition) console.log('dot dot dot') Two-branch if structure statement if (condition) { Code executed after the condition is met} else{ Code executed if the condition is not met} Multi-branch if structure statement if(condition 1){ Code 1 } else if(condition 2){ Code 2 } ...... else{ None of the above conditions are met and the code is executed} Switch Structure var today=1 switch(today){ case 1: console.log('working day') break case 2: console.log('working day') break case 3: case 4: case 5: console.log('working day') break default console.log('rest day') break The difference between switch and if
Loop StructureRepeated execution of an operation is called a loop. while//Loop 10 times var i=1 while(i<=10){ console.log('111111') i++ } //Example: Calculate the sum of integers within 100 var i=1 var sum = 0 while(i<=100){ sum+=i i++ } Example: Output all integers between [1,200] that are divisible by 7 but not by 4, and count the number of them. At the same time, the output requires 5 var i=1 to be displayed on each line. var count = 0 while(i<=200){ if(i%7==0 && i%4!=0){ document.write(i+" ") count++; //Count the number // Determine if 5 outputs are changed to a new line if (count%5==0){ document..write('<br>'); } } i++; document.write('<br>Total: '+count+'') do … whileExecute the code first, then judge the condition var i=1; do{ console.log('Study hard and make progress every day!') i++; }while(i<=10) #Case#Calculate the multiple between 1-50<script type="text/javascript"> var i=1; var sum=0; do{ if(i%6==0){ sum+=i } i++; }while(i<=50) console.log(sum) </script> #Case# Loop to prompt the user to enter 5 numbers, press q to end, and then output the maximum and minimum values #Prompt the user to enter once, then use the number as the maximum and minimum values var num = Number(prompt('Please enter a characteristic (press q to end):')) var max=num; var min=num; var flag = true // Indicates whether to continue the loop var i = 1; do{ var num=Number(promot('Please enter an integer!')) #Determine whether the user enters q if(num=='q'){ flag=false //If you enter q, change flag to false, indicating that the loop stops}else{ num=Number(num) if(num>max){ max=num; } if (num<min){ min=num } }while(flag) console.log(max) console.log(min) for loopgrammar for(initialization:condition:iteration){ Code Block} The initialization part is executed first at the beginning of the loop, and the initialization part is executed only once After the initialization is completed, it is determined whether the condition is met. If so, the code block is executed, and then the iteration part is executed. for … in … Traverse the collection data The loop traversal is the index order of the traversed data in the collection (starting from 0), not the data itself <script type="text/javascript"> var str = 'abc' for(var index in str){ console.log(index,str[index]) } </script> for …of… Iterate over the collection data This is to get the value directly <script type="text/javascript"> var str = 'abc' for(var index of str){ console.log(index) } </script> summary
Terminating the loop break break jumps out of the entire loop and terminates the execution of the loop Case //When integers between 1 and 20 are added, stop adding when the accumulated value is greater than 66, and output the current integer and the accumulated value var sum = 0 for(var i=1;i<=20;i++){ sum+=1 if(sum>66){ break } } continueJump out of this loop and execute the next loop. This loop has not yet been completed. //Calculate the sum of all even numbers between 1-10 var sum=0; for(var i=1;i<=10;i++){ if(i%2!=0){ continue } sum+=i } Second layer cycle A loop is nested in another loop, forming a double loop. Various loops can be nested in each other. The outer loop variable changes once, and the inner loop executes once //Case //In a certain programming competition, there are three classes participating, each with 4 students. Enter the scores of each student in each class, and then calculate the average score of each class for(var i=1;i<=3;i++){ alert('Please enter the student information of the '+i+'th class---') //Inner loop controls the number of students in the class var sum=0 for(var j=1;j<=4;j++){ var score=Number(prompt('Please enter the score of the '+j+'th student:')) sum+=score; } console.log('The average score of the '+i+'th class is: '+sum/4) } <script type="text/javascript"> for(var i=1;i<=9;i++){ for(var j=1;j<=i;j++){ document.write(j+'*'+i+'='+i*j+'  ') } document.write('<br>') } </script> SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Radio buttons and multiple-choice buttons are styled using images
>>: Sample code for displaying reminder dots in the upper left or upper right corner using CSS3
Mixins provide distributed reusable functionality...
As shown in the figure below, it is a common desi...
Table of contents 1. Preparation 2. MySQL encrypt...
In HTML and CSS, we want to set the color of a bu...
I once encountered an assignment where I was give...
HTML comments, we often need to make some HTML co...
Learn how to host your own website on Apache, a r...
A few days ago, I saw a post shared by Yu Bo on G...
Introduction MySQL should be a very common databa...
Nowadays, the screen resolution of computer monit...
Table of contents Partitioning mechanism SELECT q...
The crontab command is used by Unix and Linux to ...
introduction The company's recent Vue front-e...
Detailed explanation of HTML (select option) in ja...
Dependence on knowledge Go cross-compilation basi...