Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can you write a random integers function to print integers with in a range?



Can you write a random integers function to print integers with in a range?..

Answer / hrpatelsoft@gmail.com

function randomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}
randomInteger(1, 100); // returns a random integer from 1 to 100
randomInteger(1, 1000); // returns a random integer from 1 to 1000

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JavaScript Interview Questions

What applications use javascript?

0 Answers  


If you need to hide the javascript code from the older browser versions, how will you perform it?

0 Answers  


Explain what is pop()method in JavaScript?

0 Answers  


What is external javascript?

0 Answers  


Mention what is the disadvantage of using innerhtml in javascript?

0 Answers  


If an array with name as "names" contain three elements, then how will you print the third element of this array?

0 Answers  


Write a JavaScript function which can take any number of strings as arguments and outputs them as a single concatenated string.

4 Answers  


How you will write a java script function that display an alert on the screen?

1 Answers   Cap Gemini,


Is there any ide for javascript?

0 Answers  


What is console.log() and why it is used?

0 Answers  


How to write comment in JavaScript?

0 Answers  


What is Javascript namespacing? How and where is it used?

0 Answers  


Categories