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.