----
x = {
  a: 2,
  b: 3,
  c:
    { one: 1 }
}

console.log({ two:2, three:3 });
----
x =
  a: 2
  b: 3
  c:
    one: 1

console.log
  two: 2
  three: 3
