Maths Flashcards

1
Q

Convert string to integer

A

parseInt(‘123’)

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

Convert number to string

A

num.toString()

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

Convert string to floating point

A

parseFloat(‘123.45’)

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

Round number

A

Math.round()

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

Round number down

A

Math.floor(number)

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

Round up number

A

Math.ceil(number)

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

Generate random number

A

Math.random()

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

Find min number in list

A

let min = Math.min(…arr)

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

Find max number in list

A

let max = Math.max(…arr)

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