Very excited
HMTL is already kind of addictive and I will be going back to learn more in depth about CSS.
Here are my answers from the JavaScript reading assignment:
-
What is a program? A program is a set of precise instructions typed by a programmer that tell a computer or (other program?) what to do.
-
What can you say about complexity in programming? Judging from the text it seems complexity is inevitable in programming, even though, and perhaps because, the basic rules and actions can be incredibly simple. It appears that taking your time, and paying attention to the growth of this complexity is more important than adhering strictly to any set of âbest practices.â
-
What function do programming languages have? A good programming language helps the programmer by allowing them to talk about the actions that the computer has to perform on a higher level. It helps omit details, provides convenient building blocks (such as while and console.log), allows you to define your own building blocks (such as sum and range), and makes those blocks easy to compose.
-
What is the relationship between Java and Javascript? On a technical level there is almost no relationship between JAVA and JavaScript. JavaScript was introduced during a time of popularity for JAVA and so the name was chosen in an attempt to ride some of JAVAâs hype.
-
What is ECMAScript and how is it related to Javascript? ECMAScript is a standard document describing how Javascript should work. These terms ECMAScript and JavaScript can usually be used interchangeably.