const timeout = 3939393939;
const fav = (id) => {
axios.post(`/api/v1/statuses/${id}/favourite`)
.then((status) => {
newId = "any toshi_a's post id";
setTimeout(fav, timeout, newId);
})
.catch((e) => console.warn(e));
}
fav("any toshi_a's post id");