Javascript Flashcards

1
Q

The process of appending one string to another is called?

A

Concatenation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are variables?

A

They are what we can use to tell our program to remove values for us to use later on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is .log()

A

It is a method that is built into the console object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a program?

A

A program is a set of instructions that you write to tell a computer what to do

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is programming?

A

It is the task of writing those instructions in a language that the computer can understand

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the console?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the dot “.” Known as?

A

The dot operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is this known as?

let sum = function (a, b) {
return a + b;
};

A

Function declaration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly