Chapter 4 Flashcards

Data and Variables

1
Q

A specific piece of data, such as a word or a number.

A

Value

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

A value category

A

Data type

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

Numeric Value

A

Number

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

Sequences of characters enclosed in quotes

A

String

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

Code segments that are reduced to a value (typeof “Hello, World!”)

A

Expression

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

What does an Expression do?
What does (typeof “Hello, World”) do?

A

Returns a value
Returns the value String.

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

A set of rules that determine how the languages deal with data of different types

A

Type System

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

When number and string functions will convert their arguments into types number and string, respectively.

A

Type Conversion
(Number(“1234”));

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

Represents a number not as a number

A

NaN - Special Value

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

A name that refers to a value. A container

A

Variable

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

The act of creating a variable

A

Declaration

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

The act of assigning a variable for the first time

A

Initialization
‘let’ not ‘var’

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

To give a variable a value

A

Assignment statement

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

To give a variable a value, using ‘=’

A

Assignment Operator

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

When we refer to a variable name

A

Evaluating

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

An unchangeable variable

A

Constant
‘const’

16
Q

Words reserved by JavaScript for use by the language.

17
Q

Variable names or phrases that are joined together, start with a lower case letter, then capitalize each internal word.

A

Camel case

18
Q

A combination of values, variables, operators, and calls to functions.

A

Expression

19
Q

The evaluation of an expression produces a value

A

Return value

20
Q

One or more characters that represent a computation like addition, multiplication, or division

21
Q

The values the operator works on

22
Q

Joining two strings

A

Concatenate
+ in between strings

23
Q

Shorthand Operators

A

Compound Assignment Operators

24
Q

What is the shorthand for:
a = a + b

25
Q

What is the shorthand for:
a = a - b

26
Q

What is the shorthand for:
a = a * b

27
Q

What is the shorthand for:
a = a / b