____ __
/ __/_ _____ ___ / /___ _____ _/|
_\ \/ // (_-</ -_) __/ // / _ > _<
/___/\_, /___/\__/\__/\_,_/ .__//
/___/ /_/
> Systems development company.This script shuffles the elements of an array.
let arr = [1,3,4,7]
randomArray(arr)
console.log(arr)- Inside the html file:
<script type="module" src="index.js"></script>
<script type="module" src="main.js"></script>- Inside the main.js file:
let arr = [1,3,4,7]
let i = 0
randomArray(arr)
while (i < arr.lenght) {
console.log(arr[i])
i++
}- Inside the main.js file:
import randomArray from "./module-random-array/index.js";
let arr = [1,3,4,7]
randomArray(arr)