Data structure

Every variable in JS is a dictionary
let p = {
  x:1;
  y:3;
}
p.x = 4;
console.log(p.y);
39/41