Buat nomor 4 digit acak JS

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