Javascript – Calling multiple .then() on the same promise element, without chaining them
I am trying to call 2 different .then() on the same Sequelize promise. I do not need to chain the then(), I just want to call 2 different effects when the promise is resolved. The first then() is called just…