index.js
run
preview
console
const myDiv = document.querySelector("div#myDiv")

myDiv.addEventListener("click", function(){
console.log("You clicked me!")
})

// const array = [1,2,3,4]

// array.forEach(function (num){
// console.log(num)
// })

// function callback(arg){
// console.log(arg)
// }
Console
/index.html
-11:56