class User { constructor(length=10) { this.id = Array.from({length}, () => Math.floor(Math.random() * 10)).join(""); } } let user = new User(); console.info(user.id); let item = new User(3); console.info(item.id);