Тёмный

Random number generator in JavaScript 🎲【4 minutes】 

Bro Code
Подписаться 1,9 млн
Просмотров 71 тыс.
50% 1

#Javascript #random #number #generator
let x;
let y;
let z;
document.getElementById("rollButton").onclick = function(){
x = Math.floor(Math.random() * 6) + 1;
y = Math.floor(Math.random() * 6) + 1;
z = Math.floor(Math.random() * 6) + 1;
document.getElementById("xlabel").innerHTML = x;
document.getElementById("ylabel").innerHTML = y;
document.getElementById("zlabel").innerHTML = z;
}

Наука

Опубликовано:

 

20 апр 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 70   
@BroCodez
@BroCodez 2 года назад
let x; let y; let z; document.getElementById("rollButton").onclick = function(){ x = Math.floor(Math.random() * 6) + 1; y = Math.floor(Math.random() * 6) + 1; z = Math.floor(Math.random() * 6) + 1; document.getElementById("xlabel").innerHTML = x; document.getElementById("ylabel").innerHTML = y; document.getElementById("zlabel").innerHTML = z; } Document roll
@scpf2360
@scpf2360 Год назад
Thx
@mraloush8959
@mraloush8959 Год назад
ily
@joyceasante8292
@joyceasante8292 Год назад
Practicing... Document roll *********************************** //Generating a random decimal number between 0 and 1 /* let x = Math.random(); console.log(x); */ //Generating a random number between 1 and 6(with a dice) but 0 and 5 technically /* let x = Math.random() * 6; console.log(x); */ //Generating a random number between 0 an 5 /* let x = Math.floor(Math.random() * 6); console.log(x); */ //Generating a random number between 1 and 6 /* let x = Math.floor(Math.random() * 6) + 1; console.log(x); */
@buwithegoat
@buwithegoat Год назад
At 0:26 to be precise Math.random() will output a value of >= 0 and less than (not equal) to 1
@AlessandroManente
@AlessandroManente Год назад
"I like to play lot of D&D"... insta-subscribed 😅 Thanks so much for the JS tutorial!
@robertoaraujo6367
@robertoaraujo6367 Год назад
This was really helpful, thank you.
@alexdin1565
@alexdin1565 2 года назад
can you make a complete playlist like this on react js, please this is my first day on your channel and you are really life saver
@irfanopc2466
@irfanopc2466 Год назад
yes bro,
@jerogentil5287
@jerogentil5287 2 года назад
> discusses javascript > elaborates > doesn't leave you out u r the best bro
@Dynamicsimpson
@Dynamicsimpson Год назад
This was a great video, as it helped correct me in doing a similar task. Thank you!
@umloiro3219
@umloiro3219 4 месяца назад
4 min so good :D thanks for the info
@MC_FortunaCraft
@MC_FortunaCraft 10 месяцев назад
Thx that was simple and helpful
@Penzisloading69
@Penzisloading69 Год назад
Super useful, Thanks a lot
@larissacury7714
@larissacury7714 Год назад
Thank you!! 😄
@nontandohappiness6382
@nontandohappiness6382 5 месяцев назад
Thank you!!😊
@tommyho1313
@tommyho1313 Год назад
thank you so much!! t's very helpful,
@SONICBOY_
@SONICBOY_ Год назад
I think math.ceil()is wanted to use there because then we don't want to add 1
@mateo-ml7lt
@mateo-ml7lt 10 месяцев назад
Its really helped me, bro😃
@user-yh4rf9oc4g
@user-yh4rf9oc4g 6 месяцев назад
nice lecture
@tazul8
@tazul8 Год назад
Helpful tutorial. Thanks...
@galveraymundp.2520
@galveraymundp.2520 Год назад
what if I want it to have two input box where you can put the maximum and minimum that will generate 6 random numbers (EXAMPLE : Min: 1 Min:2 *press generate button Output: 2,1,3,5,7,6) please help🙂
@hoatranminh5216
@hoatranminh5216 Год назад
Thank you so much, Bro
@MrLoser-ks2xn
@MrLoser-ks2xn Год назад
Thanks!
@sahilsoni6191
@sahilsoni6191 9 месяцев назад
Broskies are always there to help !!
@spacekeebeats3155
@spacekeebeats3155 8 месяцев назад
thank you
@AnjoSoy
@AnjoSoy Год назад
Hey Bro, thank you! =D
@jobarmure6169
@jobarmure6169 Год назад
thx for your help
@jaredkaye3669
@jaredkaye3669 3 месяца назад
Hmm I wanted to know how math.random() selects the number. In WoW /roll would give the dice roll for loot and casinos. I thought it was derived from the time frequency. CLA3 AI is describing itself with javaScript and math.random().
@TheEvertonDias
@TheEvertonDias Год назад
Thanks, Bro!
@singh-vx9hx
@singh-vx9hx Год назад
how to add the number just using one time math.floor. Suppose first time it gives 5 and next time it five 6 ...I want to add them by only using one time math.floor........how to store them and add them
@A1exP1ays
@A1exP1ays Год назад
when he rolled 5 5 times in a row its a 1 in 7776 chance (thanks calculator)
@ngocthangphan8968
@ngocthangphan8968 10 месяцев назад
instead of pressing roll 10 times, is there a way to print to the screen with the data 10 times?
@stellaeyinade6245
@stellaeyinade6245 10 месяцев назад
Yeah. Run a loop inside the function
@MohyDev
@MohyDev 2 года назад
//For the algorithm!
@lucabinder9829
@lucabinder9829 2 года назад
Thats Brolicious!
@francheeze
@francheeze 10 месяцев назад
You can just use Math.ceil(Math.random() * 6) instead
@ibrahimhossen6549
@ibrahimhossen6549 26 дней назад
Nice
@talstolo50
@talstolo50 8 месяцев назад
i copied the exact same codes but its not working for me
@amazingmoments7690
@amazingmoments7690 2 месяца назад
Hi, i am looking for a code for generating unique username on registration form so pls advise.
@KamiNoKam
@KamiNoKam Год назад
How can I add preset variables? Like 1-6 but the odds of getting 6 is more.
@harshjha4451
@harshjha4451 Год назад
😂
@Gubei01
@Gubei01 Год назад
im wondering that too, should probably search on google
@crazzykai
@crazzykai Год назад
probably roll something like 1 - 12 but then make it if it's bigger than 6 it will round to 6
@ViReel9436
@ViReel9436 2 года назад
What's the seed used here?
@lolplayfelix-_-2713
@lolplayfelix-_-2713 2 года назад
depends on the browser and the architecture, in most cases, you can't really tell... digging through the v8 engine source code i found a lot of different ways they create random numbers, so as far as i can see, you'll have to create your own seeded random function, a good starting point would be something called a "linear feedback shift register" and maybe some of your own implementations (just from the top of my head you could hash the seed you got, and interpret that as a value from 0 to 1)
@temotemo-lw2du
@temotemo-lw2du Год назад
when you making plus 1 its random number between 1 and 7 and you didnt explain how to find numbers for example beteween 20 and 60
@abdulrahmanrawashdeh5747
@abdulrahmanrawashdeh5747 Год назад
rand*(max-min) +min
@IzEFunni
@IzEFunni Год назад
How would you put this in a discord bot?
@alexdin1565
@alexdin1565 2 года назад
you are the best
@Akgaming-games
@Akgaming-games 2 года назад
can you make a video on python full course latest version
@rayankhan12
@rayankhan12 2 года назад
Um.. the 12 hour video on his channel is already latest version??
@Akgaming-games
@Akgaming-games 2 года назад
@@rayankhan12 that is 1 year old
@haygetheh
@haygetheh 2 года назад
As someone who currently follows the guide, most classes in the course work on the latest version. Currently at a 2 hour point of the whole thing but i couldn't do only one lesson, that being dictionaries.
@rayankhan12
@rayankhan12 2 года назад
@@Akgaming-games But it isn't easy to make another (more or less) 12 hour video on Python again.
@canwegetashoutouttoworking2002
@canwegetashoutouttoworking2002 2 года назад
@Dude, I am not an alien... If you're talking about javascript, try this out: function random() { let variable = Math.floor(Math.random() * 9) + 1; alert("Your random number is " + variable); } You can repeat this as much as you want to.
@scpf2360
@scpf2360 Год назад
It Did Not Work :(
@oximas-oe9vf
@oximas-oe9vf Год назад
try again it will work try copying his code to see if the problem is with your the code or with your IDE
@roycechriston5389
@roycechriston5389 Год назад
Let's freaking goooo 👻
@MELODY_music_MASTER_pop
@MELODY_music_MASTER_pop 5 месяцев назад
I got to know how to generate a random number good tutorial?
@remidis
@remidis Год назад
awesome, now every java game developers could make a gacha game and start milking their players' wallet
@pseudomonous
@pseudomonous 2 года назад
I am already a bro😂😂
@clrkkdd12
@clrkkdd12 2 года назад
👊🏽
@bilaltoumir4475
@bilaltoumir4475 Год назад
Please do php
@oximas-oe9vf
@oximas-oe9vf Год назад
I am voting for PHP as well
@randomletters1834
@randomletters1834 10 месяцев назад
Далее
Random number generator in JavaScript ⁉
8:36
Просмотров 18 тыс.
How To Predict Random Numbers Generated By A Computer
13:54
True Random Numbers - Computerphile
12:16
Просмотров 120 тыс.
Why Random Numbers Aren't Random
9:17
Просмотров 75 тыс.
5 JavaScript Concepts You HAVE TO KNOW
9:38
Просмотров 1,4 млн
Build a JavaScript random password generator 🔑
12:05
Using Math.random in Java
5:32
Просмотров 13 тыс.
The Story of Next.js
12:13
Просмотров 545 тыс.
Для фанатов SEGA MEGADRIVE - Anbernic RG ARC
14:23
solve bubbling fan issue
0:24
Просмотров 2,6 млн