Posts by chmod777 • 125 points
4 posts
-
1
votes3
answers97
viewsQ: Execution or not of the increment in loops for
Code 1: var x = 1; for( ; x<6 ; x+=2 ){ x=x*x; } console.log(x); In the above code even if the condition is false the incrementing part is last executed. Code 2: var x = 0; for( ; x<8 ; x++…
-
0
votes2
answers671
viewsA: What is HTML Outline (HTML Outlines)?
Rereading some documents, I realized that the way HTML4 treated Outline structuring was not very effective and had many problems, for example: *It was very inaccurate in the structuring of Outline…
-
8
votes2
answers671
viewsQ: What is HTML Outline (HTML Outlines)?
What is the function of an HTML sketch (HTML Outlines)? How he is formed? When? Could someone give me a profound explanation on the subject?…
-
2
votes1
answer201
views