You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
175B

  1. var nested = {
  2. person: {
  3. name: "Chris"
  4. },
  5. ohyeah: "awesome!",
  6. value: ["is", function() {return this.ohyeah;}],
  7. more: {
  8. nested: [29, {values: "kbai"}]
  9. }
  10. };