This is pretty simple, lets dive in!
Find a name that isn't taken and clearly describes what your module is doing
$ npm view your-first-node-module
'use strict'; | |
const hex = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 'B', 'C', 'D', 'E', 'F']; | |
const section1 = document.querySelector('.section1'); | |
const btn = document.getElementById('btn'); | |
const color = document.querySelector('.color'); | |
let getRandomNumber = () => { | |
return Math.floor(Math.random()*hex.length); | |
} |
Generally for any course you take/study, to help your "ministry" move forward 😉:
One full course can be divided into group-sections. Every group-section is treated as though it is a separate course. Which technically means a full course that is not divided into any group-sections is equivalent to a typical group-section.
Each group-section can therefore have different number of study-rounds depending on the comple