Quick actions

cmd+k|ctrl+k

Navigation

Languages

object array

Snippet info

Language

JavaScript

Visibility

public

Author

asepkhabril20

Created

2022-08-14T06:37:32.894639Z

Updated

2022-08-14T06:37:32.894639Z

let user = {
    name: {
    firstName: "Harry",
    lastName: "Potter",
    },
    
    th: {
    age: 20, 
    isMuggle: false,
    stuff: ["Magic Wind", "Flying Car", "Owl"],
    }
};

console.log("Hallo, nama saya " + user.name + " " + user.stuff);
console.log("Umur saya " + user.th.age + " tahun");
INFO