مولد اعداد تصادفی در جاوا اسکریپت⁉
00:00:00 Math.random() 00:02:57 مولد اعداد تصادفی 00:06:37 اعداد تصادفی چندگانه // مولد اعداد تصادفی const myButton = document.getElementById("myButton"); const label1 = document.getElementById("label1"); const label2 = document.getElementById("label2"); const label3 = document.getElementById("label3"); const min = 1; const max = 6; اجازه دهید randomNum1; اجازه دهید randomNum2; اجازه دهید randomNum3; myButton.onclick = function(){ randomNum1 = Math.floor(Math.random() * max) + min; randomNum2 = Math.floor(Math.random() * max) + min; randomNum3 = Math.floor(Math.random() * max) + min; label1.textContent = randomNum1; label2.textContent = randomNum2; label3.textContent = randomNum3; }
8 بازدید
.
9 ماه پیشیوتیوب
.
Bro Code