| 123456789101112131415161718 |
- let indics = [5]; // Crime Religion Economie Noblesse Peuple
- let body = document.body;
- function init() {
- let divIndics = document.getElementById("lsIndics");
-
- for(let i = 0; i < indics.length; i++) {
- indics[i] = Math.random() * 100;
- console.log(divIndics)
- divIndics.childNodes[i].childNodes[2].innerHTML = indics[i];
- }
- }
- function main() {
- init();
- }
- main();
|