There is my code.
const Product = function (id, date, pair, timeframe, shortLong, entry, tp, sl, size, wl, link, reasons, results) {
this.id = id;
this.date = date;
this.pair = pair;
this.timeframe = timeframe;
this.shortLong = shortLong;
this.entry = entry;
this.tp = tp
this.sl = sl;
this.size = size;
this.profit = (() => {
});
this.r = null;
this.wl = wl;
this.link = link;
this.reasons = reasons;
this.results = results;
}
const data = {
products: [],
selectedProduct: null,
totalProfit: 0
}
I want to calculate r and profit side, but i can't. I tried like
this.profit = (() => {
});
this way, but Js doesn't allow this type functions i think.
How can I add to this values products array?