JavaScript Numbers Flashcards

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

What are whole numbers in JavaScript called?

A

Integers

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

Provide an example of an integer in JavaScript.

A

5, 0, -100, 9999

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

What are numbers with decimal points in JavaScript called?

A

Floating point numbers

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

Give an example of a floating point number.

A

3.14, -9.88888, .0000009

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

How can you represent really large or small numbers in JavaScript?

A

Using scientific notation

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

What does ‘9e-6’ represent in decimal form?

A

.000009

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

What does ‘9e+6’ represent in decimal form?

A

9000000

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

How do you assign a number to a variable in JavaScript?

A

Using the equals sign (assignment operator)

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

Provide an example of assigning a number to a variable.

A

let score = 0; const pi = 3.141592653589793

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

What happens if you put quotation marks around a number in JavaScript?

A

It becomes a string, not a number

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

What is the value stored in the variable aString if defined as const aString = ‘10’;?

A

A string made up of the character 1 followed by 0

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

True or False: A number inside quotes is really a number.

A

False

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

Fill in the blank: In JavaScript, you can store numbers in _______.

A

variables

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

What is a potential issue when treating a string as a number in JavaScript?

A

It can lead to strange and confusing behavior in math operations

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

What happens when you try to add two numbers together when the numbers datatypes are both strings instead of a numerical datatype like an int or a float?

A

It will concatenate the strings, so “10” + “5” will be “105” ( a string) not 15.

17
Q

How can you use JS to tell what a variable’s datatype is?

A

Use the typeof operator.

typeof “John” // Returns string
typeof (“John”+”Doe”) // Returns string
typeof 3.14 // Returns number
typeof 33 // Returns number
typeof (33 + 66) // Returns number
typeof true // Returns boolean
typeof false // Returns boolean
typeof 1234n // Returns bigint
typeof Symbol() // Returns symbol
typeof x // Returns undefined

18
Q

How do you convert a string into an int or float?

A

parseInt() or parseFloat()

You can also use the unary plus operator, basically just add a + before the var name

+nameOfVarToConvert