- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Is it correct to use JavaScript Array.sort() method for shuffling?
Yes, you can use the JavaScript Array.sort() method for shuffling. Let’s see how
Example
function shuffleDisplay(arr) { var tmp, current; // calculating length var top = arr.length; if(top) while(--top) { current = Math.floor(Math.random() * (top + 1)); tmp = arr[current]; arr[current] = arr[top]; arr[top] = tmp; } return arr; }
- Related Articles
- C++ Program to Implement Fisher-Yates Algorithm for Array Shuffling
- Shuffling string based on an array in JavaScript
- Randomly shuffling an array of literals in JavaScript
- What is method hiding in Java and how to use it?
- Is it possible to use variable for collection name using PyMongo?
- Is it advisable to use recycled plastic containers for storing food ?
- What is the use of weakSet.has() method in JavaScript?
- What is the use of Object.is() method in JavaScript?
- What is the use of Atomics.store() method in JavaScript?
- What is the use of Object.isFrozen() method in JavaScript?
- What is the use of _.size() method in JavaScript?
- What is the use of test() method in JavaScript?
- What is the use of forEach() method in JavaScript?
- What is the use of Array.Reduce() method in JavaScript?
- What is the use of Array.Some() method in JavaScript?

Advertisements