3178-find-the-child-who-has-the-ball-after-k-seconds

DevGod needs to write a blog entry for this problem!
/**
 * @param {number} n
 * @param {number} k
 * @return {number}
 */
var numberOfChild = function(n, k) {
    let ball = 0;
    let path = 1;
    for(let I = 0; I<k; I++){
        if(ball === n-1 || ball === 0 && I !== 0){
            path = -path;
        }
        ball += path;
    }
    return ball;
};