Shared Flashcard Set

Details

CAWD WEEK 26 STUDY GUIDE 2019-2020
chudda car
25
Other
11th Grade
03/11/2020

Additional Other Flashcards

 


 

Cards

Term
empathy
Definition
sharing of feelings
Term
emulate
Definition
follow an example
Term
enervating
Definition
tiring, weakening.
Term
lumin
Definition
light, shine; source
Term
Kinetic Typography
Definition
The technical name for "moving text" - is an animation technique mixing motion and text.
Term
JavaScript
Definition
This is a Web focused programming language that builds interactivity on the Web. It is part of the Trinity of Front End Web Design along with HTML and CSS. (This has nothing to do with Java - a completely different language)
Term
script
Definition
External JavaScript files are linked to HTML through this tag, using the src attribute.
Term
Conditional Statements
Definition
These in programming allow the code to do something based on a condition – if this, do this. (A an example of this is an if statement that tested the counting variable value in our rotating gallery project.)
Term
Variable
Definition
In programming this is a container of information.
Term
String
Definition
This can be stored in a variable. (ex: 123Abc)
Term
Integer
Definition
This can be stored in a variable. (ex: 4)
Term
Float
Definition
This can be stored in a variable. (ex: 3.14)
Term
Boolean
Definition
This can be stored in a variable. (ex: true or false)
Term
Document Object Model (DOM)
Definition
This allows Web Developers to access anything in an HTML document from the JavaScript.
Term
getElementById()
Definition
This is a method used to connect JavaScript to an HTML element with a specific Id. Once connected, you can change and adjust the element programmatically (like change the src attribute over time in our gallery).
Term
Function
Definition
This in programming is a named section of your code that does something specific. This function is first defined, and then can be called over and over without having to re-write the function which saves programmers time.
Term
{ and }
Definition
This and this (a type of bracket) are frequently used in JavaScript, and they have to be balanced. If your program has 5 of these‘s, it will need 5 of these’s or the code will throw and error and likely not behave as you intend it to.
Term
variableName++
Definition
This will increase a variable by 1
Term
variableName--
Definition
This will decrease a variable by 1.
Term
window.onload=function(){...}
Definition
This is an anonymous function (a function with no name) which will wait until the webpage has loaded before running. Wrapping our JavaScript with this anonymous function is a useful way of delaying the JavaScript from running until the entire page has loaded.
Term
text
Definition
HTML input type of “...” will create a text field to collect user input.
Term
password
Definition
HTML input type of “...” will create a text field to collect user input and be masked with symbols instead of your input. This is very low level security, but effective.
Term
window.location.href
Definition
This allows JavaScript to change the location of the browser – you can change what the users sees to anything you wish.
Term
console.log()
Definition
This allows Web Developers to test their code by outputting to the console of the web browser. This will not show up on the screen, and is used for development and testing. (This is similar to “Print String” in Blueprints of Unreal Engine.)
Term
Event Listeners
Definition
These in JavaScript will let the program listen for an “event”, be it a click, keyboard event, etc. When this event “happens”, it will initiate a function to run. For example we ran our username and password project by clicking a button that was listening for the “click” event.
Supporting users have an ad free experience!