js设计模式:计算属性模式
作用:
将对象中的某些值与其他值进行关联,根据其他值来计算该值的结果
vue中的计算属性就是很经典的例子
示例:
let nowDate = 2023const wjtInfo = {brithDate:1995,get age(){return nowDate-this.brithDate}}console.log(wjtInfo.age,'wjt年龄')nowDate += 1console.log(wjtInfo.age,'过了一年后wjt年龄')