4.1 js datatypes Flashcards

1
Q

Who originally developed JavaScript?

A

“Branden Eich (Netscape)”

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

What was JavaScript initially named?

A

“LiveScript”

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

What is the standardized name for JavaScript?

A

“ECMAScript (ES)”

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

Name three JavaScript client side frameworks

A

“React

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

Name one Javascript server side framework

A

“Node.js”

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

What are the three must learn languages for Web Programming?

A

“HTML5

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

Is JavaScript case-sensitive?

A

“Yes”

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

Is JavaScript loosely typed (or dynamically typed)?

A

“Yes”

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

What are the five primitive types in JavaScript?

A

“Number

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

What is coercion in JavaScript?

A

“Automatic conversion of one data type to another”

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

Name four ways to declare a JavaScript Variable

A

“Using var

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

What happens in Javascript when you add a number to a String?

A

“Concatenation”

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

What is the result of 1 + 2 + ‘birds’ in JavaScript?

A

“‘3birds’”

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

What is the result of ‘$’ + 3 + 4 in JavaScript?

A

”‘$34’”

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

If one operand is number, and the other cannot be converted to a number, how does < work?

A

“False all the time”

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

If operands are numbers, or all can be converted to a number, how does * work?

A

”* is a number multiply”