Skip to content

Instantly share code, notes, and snippets.

View azzlabs's full-sized avatar
Needs caffeine

Marco Azzari azzlabs

Needs caffeine
View GitHub Profile
@azzlabs
azzlabs / cartella-tombola.js
Last active October 12, 2023 11:55
Genera una tabella della Tombola in JavaScript
class RandTools {
// Inizializza l'array interno sequenzialmente con interi
distRandInit (end, start = 0) {
this.dist_rand = [];
for (var i = start; i < end; i++) {
this.dist_rand.push(i);
}
}
// Ottiene casualmente un elemento dall'array e lo rimuove