Split Integer en dígitos JavaScript

var n =  123456789;
var digits = (""+n).split("");
Clear Crab