Blog 201 for ACA

Jose zuniga
2 min readMar 7, 2021
  1. Describe one thing you’re learning in class today.

I learned that coding is super fun & requires a lot of dedication.

  1. What is the difference between == and === ?

the == is somewhat strict whereas the === has to be exactly the same otherwise it will come out undefined.

  1. What is the value of foo? var foo = 10 + '20';

1020

  1. Describe what a terminal application is.

The terminal application is the terminal emulator included in our computers to accomplish tasks on a computer without using a graphical user interface.

  1. What is the ternary operator?

its like an if else statement just using ‘? :’ for example, you take in a condition statemnet and follow it with a question mark “?”, then an expression to execute if the condition is truthy followed by a colon (:).

  1. What are some ways to ensure that your website design or web application is accessible and user-friendly?

Play with it yourself, letting others that aren’t coders use your web app and get advice from them to see what you can change to make it better and easier to use/navigate for the user.

  1. What are your favorite features of HTML5, and how have you implemented them in your front-end development projects?

My favorite features of HTMl5 are the video element, figure element, header element, and footer element. The video and figure element make it easy to add videos and pictures to your html page. The header and footer elements make it easy and make the page look a lot more organized with less work.

  1. How do you structure your CSS and JavaScript to make it easier for other developers to work with?

I try to name my JS code depending to what my HTML page is about.

  1. What’s your process for addressing browser-specific rendering problems? Do you find that a certain browser is more challenging to work with than others?

I try to use the same browser all the time. I find it that using google chrome is very easy to use and navigate with Javascript.

--

--