Basics Flashcards

1
Q

What is console?

A

Refers to an object, a collection of data and actions in JS.

Math is an object in js

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

What is .log?

A

Tells console to log or print whatever is in parenthesis.

Ex) console.log(10)

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

What is //?

A

Allows comments in code. Can be used in same line of code.

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

What is /* */

A

Allows comment to use multiple code lines. Can be used within (inline) as a comment without affecting code.

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

What are “Primitive” data types in JS?

A
#Number; 
'String'; 
Boolean (true or false);
null (intentional no value);
undefined (no data/type);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are arithmetic data types?

A
\+addition;
-subtraction;
*multiplication;
/division;
%modulus;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is ; ?

A

Like in CSS, ; is used to note the end of a statement

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

What is string concatenation?

A

Use the + between strings to bring the strings together. Use ‘ ‘ for space between words.
Ex)
console.log(‘wo’ + ‘ah’); // Prints ‘woah’
console.log(‘I love to ‘ + ‘code.’)
// Prints ‘I love to code.’

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

What is .length?

A

.length is an operator: can be used to tell how many characters are in a string
Ex) console.log(‘Teaching the world how to code’.length)
console: 30

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

What are methods?

A

methods are actions we can perform in JS.
1) a period (the dot operator)
2) the name of the method
3) opening and closing parentheses
Note:
When we use console.log() we’re calling the .log() method on the console object.
Ex) console.log(‘Codecademy’.toUpperCase()); will print out: CODEACADEMY

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

What does this statement say: console.log(Math.floor(Math.random() * 50));

A

// Prints a random whole number between 0 and 50

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

What is the . (dot)?

A

signals the property of an object. Used to initiate a method in JS. Used with built-in objects like Number or Math

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