• In this post, we will see how to generate random number between 1 to 10 in javascript. How to generate random number between 1 and 10 in javascript We can simply Math.random() method to generate random number between 1 and 10 in javascript. `Math.random()` returns a random number between 0(inclusive), and 1(exclusive). That means `Math.random()` returns always number lower than 1. We can use `Math.random()` with `Math.floor()` to generate random integer. Here is generic formula to generate random number in the range. Math.floor(Math.random() * (maximum - minimum + 1)) + minimum In our case, minimum = 1 maximum = 10 so it will be Math.floor(Math.random() * (10 - 1 + 1)) + 1 Math.floor(Math.random() * 10) + 1 So here is the program to generate random number between 1 and 10 in javascript. var randNum = Math.floor(Math.random() * 10) + 1; console.log(randNum) When you run above program, you will get below output: 3 You can obviously get differnt outout as we are generating random number here. Generate 10 random integers in range of 1 to 10 console.log("Generating 10 random integers in range of 1 to 10") for (let i = 0; i < 10; i++) { var randNum = Math.floor(Math.random() * 10) + 1; console.log(randNum) } Generate 10 random integers in range of 1 to 10 7 5 1 10 5 9 7 7 6 2 Generate random number in a range in javascript Here is generic formula to generate random number in a range. function generateRandomInteger(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } // Generate random number between 1 to 10 console.log(generateRandomInteger(1,10)) // Generate random number between 11 to 20 console.log(generateRandomInteger(11,20)) // Generate random number between 21 to 30 console.log(generateRandomInteger(21,30)) 4 17 28 In case, if you don't want to include maximum while generating random numbers, you can use below function. function generateRandomInteger(min, max) { return Math.floor(Math.random() * (max - min)) + min; } That's all about how to generate random number between 1 and 10 in javascript
    15 January

    Generate Random Number Between 1 and 10 in JavaScript

    1. Introduction In JavaScript, generating random numbers is a common task in various applications, such as games, simulations, or as part of algorithms. Our goal is to learn how to generate a random number between 1 and 10, which can be quite handy in many scenarios. The expected output in each case is a single […]

  • Escape quotes in Javascript
    08 December

    Escape quotes in Javascript

    In this article, we will see how to escape quotes in Javascript. Let’s see what happens if we have singe quote in String and we also use single quotes to declare the string in javascript. [crayon-662d304eb3c07932105224/] Output: unknown: Unexpected token (1:26) Ways to escape quotes in Javascript There are multiple ways to escape quotes in […]

  • Javascript capitalize first letter
    06 December

    How to Capitalize first letter in Javascript

    In this tutorial, we will see how to Capitalize first letter in Javascript. Capitalize first letter of String in Javascript There are multiple ways to Capitalize first letter of String in Javascript. Let’s go through each of them. Using charAt(), toUpperCase() and slice() We will combination of charAt(), toUpperCase() and slice() functions to capitalize first […]

  • Add character to String in Javascript
    05 December

    Add character to String in Javascript

    In this post, we will see how to add character to String in Javascript. There are multiple ways to add character to String in Javascript. Let’s go through them one by one. Add character to String at start of String in Javascript Using + operator You can simply use + operator to add character to […]

  • 08 September

    jQuery html() method example

    In this post,  we are going to see jQuery html method. html method is used to get html content of first matched elements,  other elements will be ignored and html(‘new html content’) is used to set html content for all matched elements. Syntax for html() : [crayon-662d304eb4141833051283/] Syntax for html(‘new html content’) : [crayon-662d304eb4146026093264/] Let’s […]

  • 28 August

    jQuery text() method example

    In this post,  we are going to see jQuery text method example. text method is used to get text of all matched elements and text(‘new text’) is used to set text for all matched elements. Syntax for text() : [crayon-662d304eb42a3964279798/] Syntax for text(‘new text’) : [crayon-662d304eb42a7937444921/] Let’s understand with the help of example: [crayon-662d304eb42a8141282726/] Live […]

  • 27 August

    jQuery prepend and prependTo example

    In this post,  we are going to see jQuery prepend and prependTo methods. Both do the same task, insert text or html before content of every selected elements, so it will put text or html to first index of selected element. Both methods add text or html as a child to selected elements .Syntax is […]

  • 25 August

    jQuery before() and insertBefore() example

    In this post,  we are going to see jQuery before and insertBefore methods. Both do the same task, insert text or html before every selected elements but syntax is quite different. Syntax for after(): [crayon-662d304eb44e9576538157/] inserting using after [crayon-662d304eb44ed195557714/] Syntax for insertBefore() : [crayon-662d304eb44ee962995849/] inserting using insertBefore [crayon-662d304eb44f0396101836/] Let’s understand with the help of example: […]

  • 24 August

    jQuery append and append to example

    In this post,  we are going to see jQuery append and appendTo methods. Both do the same task, insert text or html after content of every selected elements, so it will put text or html to last index of selected element. Both methods add text or html as a child to selected elements .Syntax is […]