Coding for Design Flashcards
Programming process flow
It illustrates the program’s operating processes through basic shapes and symbols.
Process specification
It describes the results that a program is expected to produce.
DOM Tree
Document Object Model. It represents a document with a logical tree.
JS Statements
It is a single line of code that performs a specific action or operation. They are used to make a program do something.
JS Input/Output
They allow for interaction with users, web browsers, and other programs to receive and produce data.
JS variables
They are statements used to store and manipulate data by declaring an identifier and assigning a value.
JS expression
It is a combination of values, variables, operators, and functions that returns a value.
JS function
It is a reusable block of code that performs tasks by taking in parameters and returning values.
JS decision
JS uses conditional statements to perform different actions based on different conditions.
JS loop
They are used to repeatedly execute a block of code until a certain condition is met.
JS algorithm
It is a set of statements or steps to solve a problem or perform a task.
Flowchart
It is a visual representation of the sequence of steps and decisions needed to perform a process.
EventListener
It is a function that initiates a predefined process if a specific event occurs.
console
A part of the web browser that allows you to log messages, run JavaScript code, and see errors and warnings.
console.log()
A function used to generate output to the console.
HTML element
It is defined by a start tag, some content, and an end tag.
CSS element selector
It selects all elements with the specified element name
Code block
It is a group of JavaScript statements enclosed within curly braces {}.
Run
Action of the browser interpreting JS statements
Syntax
It is tthe set of rules and guidelines that define the structure and format of valid JavaScript code
Input/output
It refers to the process of interacting with the user or external systems to receive input data and produce output results.
Property
It is a characteristic or attribute of an object. It consists of a name (key) and a value, and it defines the state or behavior of the object.
Style
It allows you to manipulate the CSS styling of the element dynamically
Event Handler
It s a function that is associated with a specific event and is triggered when that event occurs.