function timeout() {
    setTimeout(function () {

        // Burada yapmak istediğin işlem...

        timeout();
    }, 1000);
}