Posts by Alex • 93 points
2 posts
-
0
votes0
answers23
viewsQ: What are "expressions" in javascript?
I would like to know what are "expressions" and "primary expressions" in javascript. The Mozilla as an example of expression x = 7 and 3 + 4, but in the "primary expressions" part it shows the…
-
9
votes1
answer144
viewsQ: Why Arrays and Functions are Objects?
I learned that objects store properties and methods: let objeto = { propriedade: "valor da propriedade", metodo: function() { return "retorno" } } But I see sites calling functions and arrays of…