crear un número aleatorio de 4 dígitos JS

var val = Math.floor(1000 + Math.random() * 9000);
console.log(val);
Nikita Gourevitch