Posts by Monteiro • 1 point
4 posts
-
-4
votes4
answers634
viewsA: What is the difference between i += 2 and i = i + 2?
There is no difference as to the results, only in the writing mode, one being more summarized and the other not. Thus, both can be used, as there will be no change in any results.
-
-4
votes4
answers4174
viewsA: What is the meaning of the operator ( * ) asterisk?
That operator is used in multiplications. Ex: A = 5 B = 7 C = A*B
-
-2
votes6
answers304
viewsA: Align images to the center
Insert the formatting for the img tag into the css. Within the formatting assign the margin: auto formatting. So your code should have the following configuration: img{ margin: auto; }…
-
-2
votes3
answers617
viewsA: Angular 8 - Problem with html accents
Insert the meta charset tag in the header of your page and enter the value "utf-8", because this tag is responsible for accepting accents, ç, and other symbols that belong to the Portuguese…