I want to make random three digit number but when I run it, it generates alphanumeric characters. I want to just get a random three digit number.
generate:
function () {
this.newItem.st = Math.random().toString(36).substring(2, 3).toUpperCase() +
Math.random().toString(36).substring(2, 4).toUpperCase()
}
When I click generate I want to get random values of just 0-9 not A-Z.