Update FisherYatesShuffle.js

removed console statement
This commit is contained in:
Omkarnath Parida
2021-10-03 20:10:26 +05:30
committed by GitHub
parent 0ada757576
commit 6fdd267459

View File

@ -16,9 +16,3 @@ export const shuffle = (array) => {
return array
}
const array = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
console.log('array', array)
const mixedArray = shuffle(array)
console.log('mixedArray', mixedArray)