Static class
123456789101112131415
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();
JavaScript
INFO