main.js 404 B

123456789101112131415161718
  1. let indics = [5]; // Crime Religion Economie Noblesse Peuple
  2. let body = document.body;
  3. function init() {
  4. let divIndics = document.getElementById("lsIndics");
  5. for(let i = 0; i < indics.length; i++) {
  6. indics[i] = Math.random() * 100;
  7. console.log(divIndics)
  8. divIndics.childNodes[i].childNodes[2].innerHTML = indics[i];
  9. }
  10. }
  11. function main() {
  12. init();
  13. }
  14. main();