Increment and Decrement Firebase

Hi, its possible to work or create Increment or Decrement, I have this core in service to save item

  save(user: any) {
    return new Promise((resolve) => {
      this.db.list(this.PATH)
              .push(user)
              .then(() => resolve());
    })
  }

increment%20decrement