02 The JavaScript Universe

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

What is a value ?

A data item that can be stored, passed, or computed.

2
New cards

Values vs code

values are floating in the universe but our code can refer to them

3
New cards

Do values exist in our code ?

No they don’t exist in our code but our code can refer to them

4
New cards

how many categories of vlaues ?

two

5
New cards

Which values are troublemakers ?

Undefined and Null

6
New cards

Do values exist in our code ?

No, they don’t. They are floating in the JavaScript Universe but our code can refer to them.

7
New cards

How many categories of values ?

Two categories of values : i. Primitive values ii) Objects and Functions

8
New cards

what are expressions?

They are like questions that JavaScript answers. Expressions are inside code so they are not values.

9
New cards

Do expressions exist inside our code ?

Yes, they are not values so they exist inside our code.

10
New cards

What are objects used for ?

To group related data and code.

11
New cards

Functions used for ?

To refer to code.

12
New cards

Undefined used for ?

For unintentionally missing values.

13
New cards

null USED FOR ?

Intentionally missing values.