Stores data to be used later
keyword name = value;
assignment operator
anyletter, $ _ or number(cant be first character)
the case sizing matters
not code read by JS strings contain values to be saved as they are.
used for math, or numeric values
true or false, the logic of JS
name = value;
null is intentionally assigned by programmer and is an intentional emptiness. Undefined is a JS assignment which declares a variable to have no arguments.
to see what your console log is
boolean, null, undefined, string, number
numbers
combines words
adds valuess and concatenates strings
boolean
adds values and assigns them
What are objects used for?
create a model for information, like a phonebook
what are object properties?
Obj {property: value}
Object literal notation
{value, value,….};
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 or square brackets
what are arrays used for
storing a list of information
describe array literal notation
[value,value,….];