Structures (records)
Definition and initialization
Constructors
Methods
Fields and properties
Constants
Type members
Structure inside the structure
//using object type
let
colorPoint = {
x:
0
, y:
0
,
color:
"
undefined
"
}
console.
log
(colorPoint.
color
)