Static class
class Service {
static _points = [];
static changePoints(points) {
Service._points = points;
console.log('set');
}
static getPoints() {
console.log('points: ', Service._points);
}
}
Service.changePoints([1, 2, 3]);
Service.getPoints();INFO