Javascript Flashcards
The process of appending one string to another is called?
Concatenation
What are variables?
They are what we can use to tell our program to remove values for us to use later on
What is .log()
It is a method that is built into the console object
What is a program?
A program is a set of instructions that you write to tell a computer what to do
What is programming?
It is the task of writing those instructions in a language that the computer can understand
What is the console?
It is the terminal or computer terminal where as user can input commands and view output.
It refers to an object, a collection of data and actions that we can use in our code
What is the dot “.” Known as?
The dot operator
What is this known as?
let sum = function (a, b) {
return a + b;
};
Function declaration