I am new to javascript... I trying to create an object- \"Flower\". Every Flower has it properties: price,color,height...
Can somebody give me an idea how to build i
flower= { price : function() { console.log('Price is 78 $'); }, color: 'red', height : 23 }; flower.price(); flower.height ;