ACA Blog post 202

Aaron Cook
1 min readOct 8, 2020
  1. Describe one thing you’re learning in class today.

We lightly touched on higher order functions. This will be fun to learn when dive into in more detail next week.

2.What is "use strict";? What are the advantages and disadvantages to using it?

I don't know. I looked it up and at this point I don't understand from the explanation but it will probably make more since the deeper I get into JS

3.Explain function hoisting in JavaScript.

Pull code up from lines further written further down in the JS document

4.Explain the importance of standards and standards bodies like ECMA.

To help stream line code and syntax across different platforms.

5.What actions have you personally taken on recent projects to increase maintainability of your code?

I still need to work on doing it more but adding commits and also making it more readable with spacing

6.Why is it, in general, a good idea to leave the global scope of a website as-is and never touch it?

I don’t fully understand but from a short search you want to leave it alone because you would be effecting the browser as a whole.

--

--