Разбить строку на массив JavaScript без делиметра

function nextBigger(num){
  console.log(num.toString().split(""));
}

nextBigger(513);
Yawning Yak