https://cypress.io logo
function randomNumber(min, max) { return Math...
# e2e-testing
k
function randomNumber(min, max) { return Math.random() * (max - min) + min; } let a = randomNumber(0,9) console.log(a)