Datatypes and operators Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

numbers

A

123

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

strings,

A

(which are sequences of characters “hello”

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

Boolean values

A

(Boolean values are named after British mathematician George Boole and have
only two possible values: true or false.) != &&

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

arithmetic,

A

the branch of mathematics dealing with the properties and manipulation of numbers:

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

comparative

A

Comparing two numbers or variables

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

mathematical operatiors

A

+ - * /

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

comparision

A

> < <= => == not equal to: !=

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

output

A

the most common method of producing output is to send information to a particular location
within the webpage in which the JavaScript code is embedded. To do this, the document object is used.

document.write (“fuck you”);

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