Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
The technical name for "moving text" - is an animation technique mixing motion and text. |
|
|
Term
|
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
|
Definition
External JavaScript files are linked to HTML through this tag, using the src attribute. |
|
|
Term
|
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
|
Definition
In programming this is a container of information. |
|
|
Term
|
Definition
This can be stored in a variable. (ex: 123Abc) |
|
|
Term
|
Definition
This can be stored in a variable. (ex: 4) |
|
|
Term
|
Definition
This can be stored in a variable. (ex: 3.14) |
|
|
Term
|
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
|
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
|
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
|
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
|
Definition
This will increase a variable by 1 |
|
|
Term
|
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
|
Definition
HTML input type of “...” will create a text field to collect user input. |
|
|
Term
|
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
|
Definition
This allows JavaScript to change the location of the browser – you can change what the users sees to anything you wish. |
|
|
Term
|
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
|
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. |
|
|