Skip to content

ThirteeNov

My personal blog about coding and internet

Menu
  • About me
  • About Zofia Kreasi
  • Cart
  • Checkout
  • Making an airplane game from scratch in Unity
  • My account
  • Privacy Policy
  • Privacy Policy – zkLeaderboard
  • Sample Page
  • Shop
  • Tutorials on Learning JavaScript
  • ZKAccounts – Privacy Policy
Menu

JavaScript random numbers examples

Posted on June 24, 2018August 4, 2020 by Habibie

Generating random numbers is a common thing in programming. Here is some examples in JavaScript:

//Basic Random
Math.random();
//From 0 to specific number
Math.random() * 10;
//Removing decimals
Math.floor(Math.random() * 10);
//Random between 5 and 10
Math.floor(Math.random() * 5) + 5;
//Random between 5 and 10 (included 10)
Math.floor(Math.random() * 5) + 6;

Watch this demonstration video:

Here is live preview from Code Pen:

See the Pen JavaScript Random Number by Muhammad Habibie (@habibieamrullah) on CodePen.

Post Views: 255
ciihuy2020

Welcome!

  • My YouTube Channel
  • My GitHub Page
  • About me

Categories

  • 3DVista
  • Android
  • Apache
  • C#
  • Cordova
  • Electron & Node JS
  • HTML5, CSS & JavaScript
  • iOS
  • Let's Make Unity Games
  • Misc
  • Photoshop
  • PHP
  • Python
  • Uncategorized
  • Unity
  • WordPress

Recent Posts

  • Make objects like wires and cables easily in Unity using Ciihuy Curved Mesh
  • [SOLVED] Can’t Add Custom Domain to Blogger After Losing CNAME Verification
  • iOS App Icon Generator by CiihuyCom
  • Advanced Blinking Marker Script to show objects position in your game canvas
  • Ciihuy Images Merger – Fast & Easy Online Image Combiner
© 2025 ThirteeNov | Powered by Superbs Personal Blog theme