JavaScript Flashcards
What is the purpose of variables?
A variable is a way to store values.
How do you declare a variable?
Use the reserved keyword var to declare a variable in JavaScript. Syntax: var ; var = ; A variable must have a unique name.
How do you initialize (assign a value to) a variable?
You can assign a value to a variable using the = operator when you declare it or after the declaration and before accessing it
What characters are allowed in variable names?
Start them with a letter, underscore _, or dollar sign $.
After the first letter, you can use numbers, as well as letters, underscores, or dollar signs.
Don’t use any of JavaScript’s reserved keywords.
What does it mean to say that variable names are “case sensitive”?
means that language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters.
What is the purpose of a string?
to represent text rather than numbers
What is the purpose of a number?
to represent and manipulate numbers
What is the purpose of a boolean?
to create true/false statements
What does the = operator mean in JavaScript?
assigns a value to its left operand based on the value of its right operand.
What is the difference between null and undefined
undefined is a type, whereas null an object
Give five examples of JavaScript primitives.
undefined , null , boolean , string and number
What data type is returned by an arithmetic operation?
numeric data
What is string concatenation?
Concatenation is the process of appending one string to the end of another string
What purpose(s) does the + plus operator serve in JavaScript?
precedes its operand and evaluates to its operand but attempts to convert it into a number, if it isn’t already
What data type is returned by comparing two values (, ===, etc)?
boolean
What does the += “plus-equals” operator do?
adds the value on the right, to the variable on the left, and then assigns that value back into the variable on the left.
What is object used for?
An object is an abstract data type with the addition of polymorphism and inheritance.
What are object properties?
Object properties are defined as a simple association between name and value
Describe object literal notation.
The Object literal notation is basically an array of key:value pairs, with a colon separating the keys and values, and a comma after every key:value pair, except for the last, just like a regular array
How do you remove a property from an object?
delete operator
What are the two ways to get or update the value of a property?
dot notation and square brackets
What are arrays used for?
to store a collection of data
Describe array literal notation.
array literal notation is where you define a new array using just empty brackets.
How are arrays different from “plain” objects?
object store different types of data, dont have orders. array store same types of data, have orders.
What number represents the first index of an array?
0
What is the length property of an array?
how many pieces in the array
How do you calculate the last index of an array?
array.length-1
What is a function in JavaScript?
a set of statements that performs a task or calculates a value
Describe the parts of a function definition.
A function has three parts, a set of inputs, a set of outputs, and a rule that relates the elements of the set of inputs to the elements of the set of outputs in such a way that each input is assigned exactly one output.
Describe the parts of a function call.
Function calls contain the name of the function being executed followed by a list of values, called arguments, which are assigned to the parameters in the function definition
When comparing them side-by-side, what are the differences between a function call and a function definition?
A function is a piece of code which enhanced the reusability and modularity of your program. It means that piece of code need not be written again. A function call means invoking or calling that function. Unless a function is called there is no use of that function.
What is the difference between a parameter and an argument?
The values that are declared within a function when the function is called are known as an argument. Whereas, the variables that are defined when the function is declared are known as a parameter.
Why are function parameters useful?
Parameters allow us to pass information or instructions into functions and procedures .
What two effects does a return statement have on the behavior of a function?
A return statement ends the execution of a function, and returns control to the calling function.
Why do we log things to the console?
console. log specifically is a method for developers to write code to inconspicuously inform the developers what the code is doing
What is a method?
A JavaScript method is a property of an object that contains a function definition.
How is a method different from any other function?
a method is associated with an object, while a function is not
How do you remove the last element from an array?
pop()
How do you round a number down to the nearest integer?
floor()
How do you generate a random number?
random()
How do you delete an element from an array?
splice()
How do you append an element to an array?
push() to the end; unshift() to the beginning
How do you break a string up into an array?
split()
Do string methods change the original string? How would you check if you weren’t sure?
no, console.log origin string out
What three-letter acronym should you always include in your Google search about a JavaScript method or CSS property
MDN
Give 6 examples of comparison operators
> ,=,<=,!=,===
What data type do comparison expressions evaluate to?
bolean
What is the purpose of an if statement?
The IF statement is a decision-making statement that guides a program to make decisions based on specified criteria
Is else required in order to use an if statement?
else is compulsory to use with if statement.
What are the three logical operators?
and , or, not
How do you compare two different expressions in the same condition?
and or or
What is the purpose of a loop?
Loops allow you to repeat a process over and over without having to write the same (potentially long) instructions each time you want your program to perform a task.
What is the purpose of a condition expression in a loop?
tell loop when to stop
What does “iteration” mean in the context of loops?
Iteration is the repetition of a process in a computer program, usually done with the help of loops.
When does the condition expression of a while loop get evaluated?
before executing the statement.
When does the initialization expression of a for loop get evaluated?
before the loop begin
When does the condition expression of a for loop get evaluated?
at the end of each loop iteration
When does the final expression of a for loop get evaluated?
at the end of the loop iteration
Besides a return statement, which exits its entire function block, which keyword exits a loop before its condition expression evaluates to false?
break;
How do you iterate through the keys of an object?
for in loop
What is the className property of element objects
to set or return the value of an element’s class attribute
How do you update the CSS class attribute of an element using JavaScript
use queryselector to select the query then use className to change
What is the textContent property of element objects?
The textContent property returns: The text content of the element and all descendaces, with spacing and CSS hidden text, but without tags
How do you update the text within an element using JavaScript?
use queryselector to select the query then use textContent to change
What is a client?
a desktop computer or workstation that is capable of obtaining information and applications from a server.
what is a server
a server is a piece of computer hardware or software that provides functionality for other programs or devices,
A server stores, sends, and receives data