What is the difference between doing `.get().then().then().catch().finally()` vs `.get().then().catch().then().finally`

I am learning a bit about promises in Javascript and am wondering if there is any difference when reordering in the following way <...>.get().then().then().catch().finally() vs <...>.get().then().catch().then().finally()?