Basics Flashcards
What is console?
Refers to an object, a collection of data and actions in JS.
Math is an object in js
What is .log?
Tells console to log or print whatever is in parenthesis.
Ex) console.log(10)
What is //?
Allows comments in code. Can be used in same line of code.
What is /* */
Allows comment to use multiple code lines. Can be used within (inline) as a comment without affecting code.
What are “Primitive” data types in JS?
#Number; 'String'; Boolean (true or false); null (intentional no value); undefined (no data/type);
What are arithmetic data types?
\+addition; -subtraction; *multiplication; /division; %modulus;
What is ; ?
Like in CSS, ; is used to note the end of a statement
What is string concatenation?
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.’
What is .length?
.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
What are methods?
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
What does this statement say: console.log(Math.floor(Math.random() * 50));
// Prints a random whole number between 0 and 50
What is the . (dot)?
signals the property of an object. Used to initiate a method in JS. Used with built-in objects like Number or Math