Random Lab Mac List
Generate random list of Lab Mac machines.
by the_voder
HTML
<div id="names"></div>
<button id="copybutton">COPY</button>
<button id="newbutton">NEW LIST</button>
CSS
body {
margin: 20px;
}
.selected {
background-color: yellow;
}
button {
display: block;
margin-top: 20px;
}
JavaScript
//////////////////////////////////////////////////////
// Randomly shuffle array and display first n items //
//////////////////////////////////////////////////////
// Names array
let names =...