0xab178613…feaasent to0xd6878475…ab48·#21,063,932·view on Etherscan
function loveWorkBalance(depth = 0) {
const indent = " ".repeat(depth);
depth < 10
? (console.log(indent + "Ambition || Family"), loveWorkBalance(depth + 1))
: depth < 20
? (console.log(indent + "Work || Love"), loveWorkBalance(depth + 1))
: depth < 30
? (console.log(indent + "Success || Happiness"), loveWorkBalance(depth + 1))
: depth < 40
? (console.log(indent + "Balance || Imbalance"), loveWorkBalance(depth + 1))
: loveWorkBalance(depth + 1);
}
loveWorkBalance();