39
/41
Data structure
Every variable in JS is a dictionary
set of property/value pair
let
p
=
{
x
:
1
;
y
:
3
;
}
p
.
x
=
4
;
console
.
log
(
p
.
y
);