In UI5 documentation it is written:
// set data model
const oData = {
recipient: {
name: "World"
}
};
But there is no any addressing regarding:
- What does it mean
World
in this context. - What value should/can we use here?
- Should we specify
recipient: {name: "World"}
here at all or the only thing we need to do here is to initializenew JSONModel(oData)
?