The Object isExtensible() static method determines if an object can have new properties added to it.

    
    const account = {
        amount: 100
    }

    console.log(Object.isExtensible(account));
    // true