An activity to help understand how to structure information into programming formats like arrays and objects.
Dogs ’n’ data
We’re going to explore creating data structures that are common to programming—by describing dogs.
Often information needs to be structured with a limited set of data types.
Data structuring is critical to understanding configuration and program information storage.
string — just some textnumber — just a numberboolean — true or falsearray — a collection, like <ol>object — a named collection, like <dl>name: Paddington
size: Small
weight: 5
colours:
- Brown
- Black
- White
Paddington
Corduroy
Wellington
Brooke
Casey
Enzo
Felix
Henry
Triton
Winston
An activity to help understand how to structure information into programming formats like arrays and objects.