The Value of JavaScript to Our Websites Flashcards
1
Q
last lesson
A
- difference between static and dynamic
- client-side dynamic features we can implement in JavaScript
2
Q
this lesson
A
- importance of JavaScript to our applications
3
Q
HTML is Static
A
- alone is static (it’s just text)
- we can use: images, CSS, etc. but it’s still static
4
Q
we want our website to be responsive
A
- when user takes an action
- we want to respond with action
- we can’t do that with plain text HTML
5
Q
HTML is NOT a Programming Language
A
- it is a markup language
- HTML uses tags
6
Q
What can a programming language do that HTML can’t?
A
- Take steps and actions in a sequence
- Do things repetitively (A loop)
- Make decisions based on data
“A language with theses abilities can solve any kind of problem that can be solved with a computer
7
Q
JavaScript is a programming language
A
- gives us ability to make interactive pages
- gives us ability to interact with: users and visitors
8
Q
Which of the following criteria is required for something to be considered a programming language?
A
- Do things repetitively
- Make decisions based on data
- Execute a series of steps in order