Quick actions

cmd+k|ctrl+k

Navigation

Languages

simulate oop

Snippet info

Language

JavaScript

Visibility

public

Author

orochi-100

Created

2022-02-25T14:40:17.666338Z

Updated

2022-02-25T14:40:17.666338Z

function newPerson(name, age) {
    const _name = name
    const _age = age
    
    return {
        age() {
            return _age
        },
        name() {
            return _name
        }
    }
}

const p1 = newPerson("max", 13)

console.log(`${p1.name()} is ${p1.age()} years old`)
INFO