let aboutMark = {
firstName: "Mark",
lastName: "Miller",
height: 1.69,
weight: 78,
bmiCalculator: function(){
this.markBMI = (this.weight / (this.height * this.height))
return this.markBMI
}
};
aboutMark.bmiCalculator()
console.log(aboutMark);
I'm looking to enhance the aboutMark object by adding a new property that combines the values of firstName and lastName together. How could we achieve this?