标签: javascript oop
鲍勃叔叔说不要混合对象和数据结构。我有以下数据结构...
AccountInfo{ CCNumber : null, CCExpiry : null }
我想在该数据结构中添加一个名为.hasAllCreditCardInfo()的函数。但这是个坏主意吗?这会将我的数据结构变成一个对象吗?
if (AccountInfo.hasAllCreditCardInfo()){ processPayment(); }