Quick actions

cmd+k|ctrl+k

Navigation

Languages

object js

Snippet info

Language

JavaScript

Visibility

public

Author

asepkhabril20

Created

2024-11-04T10:40:29.98736Z

Updated

2024-11-04T10:40:29.98736Z

const student = {
    name : "Asep Ripa'i",
    age : 20,
    address : {
        RT : 02,
        'Kode pos' : {
            'nama pos' : {
                saya :"Asep"
            },
            Rw : {
                satu : 01,
            }
        },
    }
}
student.birthDay = '29 April 2001';
student.name = 'Lana'
console.log(student.name);
INFO