JavaScript Passing Parameter como valores predeterminados

function sum(x = 1, y = x,  z = x + y) {
    console.log( x + y + z );
}

sum(); // 4
SAMER SAEID